make the star count/diff label smaller
All checks were successful
Deploy Website / deploy (push) Successful in 4m3s

This commit is contained in:
Lee 2024-10-11 20:01:49 +01:00
parent d99feecc8f
commit 9f6a58e325

@ -37,7 +37,7 @@ export default function ScoreSongInfo({ leaderboard, beatSaverMap }: Props) {
} }
> >
<div <div
className="absolute w-full h-[20px] bottom-0 right-0 rounded-sm flex justify-center items-center text-xs cursor-default" className="absolute w-full h-[18px] bottom-0 right-0 rounded-sm flex justify-center items-center text-[0.70rem] cursor-default"
style={{ style={{
backgroundColor: songDifficultyToColor(diff) + "f0", // Transparency value (in hex 0-255) backgroundColor: songDifficultyToColor(diff) + "f0", // Transparency value (in hex 0-255)
}} }}
@ -45,7 +45,7 @@ export default function ScoreSongInfo({ leaderboard, beatSaverMap }: Props) {
{leaderboard.stars > 0 ? ( {leaderboard.stars > 0 ? (
<div className="flex gap-1 items-center justify-center"> <div className="flex gap-1 items-center justify-center">
<p>{leaderboard.stars}</p> <p>{leaderboard.stars}</p>
<StarIcon className="w-4 h-4" /> <StarIcon className="w-[14px] h-[14px]" />
</div> </div>
) : ( ) : (
<p>{diff}</p> <p>{diff}</p>