fix: use primary color for all summary card icons (refs #2)
All checks were successful
Deploy to Staging / Build Images (pull_request) Successful in 2m37s
Deploy to Staging / Deploy to Staging (pull_request) Successful in 37s
Deploy to Staging / Verify Staging (pull_request) Successful in 5s
Deploy to Staging / Notify Staging Ready (pull_request) Successful in 5s
Deploy to Staging / Notify Staging Failure (pull_request) Has been skipped

All summary cards now use primary.main for consistent branding

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Eric Gullickson
2026-01-02 22:07:43 -06:00
parent d3c8d377f8
commit 927b1a4128
2 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@
# After verification, sends notification with link to trigger production deploy # After verification, sends notification with link to trigger production deploy
name: Deploy to Staging name: Deploy to Staging
run-name: Staging Deploy - ${{ gitea.sha }} run-name: "Staging - ${{ gitea.event.pull_request.title || gitea.ref_name }}"
on: on:
push: push:

View File

@@ -27,14 +27,14 @@ export const SummaryCards: React.FC<SummaryCardsProps> = ({ summary }) => {
value: summary.upcomingMaintenanceCount, value: summary.upcomingMaintenanceCount,
subtitle: 'Next 30 days', subtitle: 'Next 30 days',
icon: BuildRoundedIcon, icon: BuildRoundedIcon,
color: 'warning.main', color: 'primary.main',
}, },
{ {
title: 'Recent Fuel Logs', title: 'Recent Fuel Logs',
value: summary.recentFuelLogsCount, value: summary.recentFuelLogsCount,
subtitle: 'Last 7 days', subtitle: 'Last 7 days',
icon: LocalGasStationRoundedIcon, icon: LocalGasStationRoundedIcon,
color: 'success.main', color: 'primary.main',
}, },
]; ];