Updated styles

This commit is contained in:
2025-09-18 19:34:15 +02:00
parent b6ecc251cb
commit 045cbe54ca

View File

@@ -35,15 +35,15 @@ export default function SmashHerosStats({ stats }: { stats: NonNullStats["SmashH
},
{
title: <p>KD</p>,
stat: <p>{kd}</p>
stat: <p className="text-muted-foreground">{kd}</p>
},
{
title: <p>Wins</p>,
stat: <p>{formatNumber(stats.wins)}</p>
stat: <p className="text-muted-foreground">{formatNumber(stats.wins)}</p>
},
{
title: <p>WL</p>,
stat: <p>{wl}</p>
stat: <p className="text-muted-foreground">{wl}</p>
}
]}
>