From 92bf9a7ea546333c75a7e5586c1b787a0fafed25 Mon Sep 17 00:00:00 2001 From: Junyan Qin Date: Sat, 2 May 2026 18:42:34 +0800 Subject: [PATCH] style: make wizard steps blue --- web/src/app/wizard/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/src/app/wizard/page.tsx b/web/src/app/wizard/page.tsx index bc085c12..0dc6594a 100644 --- a/web/src/app/wizard/page.tsx +++ b/web/src/app/wizard/page.tsx @@ -572,9 +572,9 @@ export default function WizardPage() { className={cn( 'w-6 h-6 sm:w-7 sm:h-7 rounded-full flex items-center justify-center text-xs font-medium transition-colors', idx < currentStep - ? 'bg-primary text-primary-foreground' + ? 'bg-blue-600 text-white' : idx === currentStep - ? 'bg-primary text-primary-foreground' + ? 'bg-blue-600 text-white' : 'bg-muted text-muted-foreground', )} > @@ -588,7 +588,7 @@ export default function WizardPage() { className={cn( 'text-sm hidden sm:inline', idx === currentStep - ? 'font-medium text-foreground' + ? 'font-medium text-blue-600' : 'text-muted-foreground', )} > @@ -599,7 +599,7 @@ export default function WizardPage() {
)}