Skip to content

Commit

Permalink
Merge pull request #58 from AkinariHex/nextjs
Browse files Browse the repository at this point in the history
Removed profile image from Dashboard
  • Loading branch information
AkinariHex authored Jan 19, 2024
2 parents d84c23b + 92c5a16 commit 9d76efb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
1 change: 1 addition & 0 deletions components/Dashboard/UserMainCard/UserMainCard.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

.tierImage img {
object-fit: contain;
background: linear-gradient(225deg, #4c94ff 0%, #216bda 100%);
}

.username {
Expand Down
7 changes: 1 addition & 6 deletions components/Dashboard/UserMainCard/UserMainCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,8 @@ export default function UserMainCard({ data }: { data: {} }) {
<div className={styles.userContainer}>
<div className={styles.tierImageContainer}>
<div className={styles.tierImage}>
<Image
src={`http://s.ppy.sh/a/${data.playerId}`}
alt={"Player's Tier"}
fill
/>
<Image src={''} alt={"Player's Tier"} fill />
</div>
{/* <div className={styles.username}>Akinari</div> */}
</div>
<div className={styles.rankings}>
<div className={styles.header} id="Tier">
Expand Down

0 comments on commit 9d76efb

Please sign in to comment.