fix player header pp color
All checks were successful
Deploy Website / docker (ubuntu-latest) (push) Successful in 2m8s

This commit is contained in:
Lee 2024-10-21 07:06:42 +01:00
parent b9587feb9e
commit 87b2c7c48a

@ -71,7 +71,7 @@ const playerData = [
return (
<div className="text-gray-300 flex gap-1 items-center">
<ChangeOverTime player={player} type={PlayerStat.PerformancePoints}>
<p className="hover:brightness-[66%] transition-all transform-gpu">{formatPp(player.pp)}pp</p>
<p className="hover:brightness-[66%] transition-all transform-gpu text-pp">{formatPp(player.pp)}pp</p>
</ChangeOverTime>
<DailyChange type={PlayerStat.PerformancePoints} change={ppChange} />
</div>