feature/IO-3497-Ant-Design-v5-to-v6 - Signed off Files

This commit is contained in:
Dave
2026-01-12 11:34:25 -05:00
parent c3da0d9035
commit c119a66f27
70 changed files with 442 additions and 463 deletions

View File

@@ -30,12 +30,12 @@ export function ScoreboardDayStats({ bodyshop, date, entries }) {
return (
<Card title={dayjs(date).format("D - ddd")} className="ant-card-grid-hoverable" style={{ height: "100%" }}>
<Statistic
valueStyle={{ color: dailyBodyTarget > bodyHrs ? "red" : "green" }}
styles={{ content: { color: dailyBodyTarget > bodyHrs ? "red" : "green" } }}
label="Body"
value={bodyHrs.toFixed(1)}
/>
<Statistic
valueStyle={{ color: dailyPaintTarget > paintHrs ? "red" : "green" }}
styles={{ content: { color: dailyPaintTarget > paintHrs ? "red" : "green" } }}
label="Refinish"
value={paintHrs.toFixed(1)}
/>