Skip to content

Commit

Permalink
Merge pull request #5139 from webkom/feat-update-achievement-styling
Browse files Browse the repository at this point in the history
Update achievement styling to be better
  • Loading branch information
jonasdeluna authored Nov 3, 2024
2 parents 25d8564 + 75e13de commit f195244
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions app/routes/users/components/UserProfile/UserProfile.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -115,20 +115,14 @@
box-shadow: var(--shadow-xs);
border-radius: var(--spacing-md);
border: 1.5px solid var(--border-gray);
display: flex;
align-items: baseline;
display: grid;
gap: var(--spacing-md);
min-width: 100%;
flex-wrap: wrap;
justify-content: center;
}
align-items: baseline;
grid-template-columns: repeat(auto-fit, minmax(6rem, 1fr));

@media (--mobile-device) {
.trophyCaseBox {
display: flex;
flex-direction: row;
align-items: baseline;
justify-content: center;
@media (--mobile-device) {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

Expand Down

0 comments on commit f195244

Please sign in to comment.