Style change

This commit is contained in:
2025-09-08 14:41:36 +02:00
parent 1afec3f73e
commit 82636ade5c

View File

@@ -38,19 +38,19 @@ export default function MegaWallsStats({ stats }: { stats: NonNullStats["MegaWal
},
{
title: <p>KD</p>,
stat: <p>{kd}</p>
stat: <p className="text-muted-foreground">{kd}</p>
},
{
title: <p>FKD</p>,
stat: <p>{fkd}</p>
stat: <p className="text-muted-foreground">{fkd}</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>
}
]}
/>