Skip to content

Commit

Permalink
Fix achievements width
Browse files Browse the repository at this point in the history
  • Loading branch information
nalves599 committed Feb 17, 2025
1 parent 7f4906f commit e1786e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/user/AchievementTile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function AchievementTile({
return (
<>
<div
className={`min-size-20 max-size-20 rounded-full shadow-md cursor-pointer ${achieved ? "bg-white" : "bg-gray-200 grayscale opacity-25"}`}
className={`min-w-20 size-20 rounded-full shadow-md cursor-pointer ${achieved ? "bg-white" : "bg-gray-200 grayscale opacity-25"}`}
onClick={() => setIsOpen(true)}
>
<Image
Expand Down

0 comments on commit e1786e6

Please sign in to comment.