From 305671acc6c0fae6ddd584bae1f5ec08219e0aec Mon Sep 17 00:00:00 2001 From: DanielS Date: Fri, 10 Jul 2026 15:23:43 +0200 Subject: [PATCH] fix: stepper circles always blue, replace bg-primary with bg-blue-600 --- shop/components/wizard/progress-stepper.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shop/components/wizard/progress-stepper.tsx b/shop/components/wizard/progress-stepper.tsx index 9b6e764..cc7bca2 100644 --- a/shop/components/wizard/progress-stepper.tsx +++ b/shop/components/wizard/progress-stepper.tsx @@ -17,16 +17,16 @@ export function ProgressStepper({ step, basketItemsCount }: ProgressStepperProps
= s - ? 'bg-primary text-white scale-110 shadow-[0_0_15px_rgba(59,130,246,0.5)]' + ? 'bg-blue-600 text-white scale-110 shadow-[0_0_15px_rgba(59,130,246,0.5)]' : 'bg-slate-800 text-slate-400' }`} > {step > s ? : s}
- = s ? 'text-primary' : 'text-slate-500'} flex items-center gap-1`}> + = s ? 'text-blue-400' : 'text-slate-500'} flex items-center gap-1`}> {s === 1 ? 'Kunde' : s === 2 ? 'Modell' : s === 3 ? 'Software' : 'Abschluss'} {s === 3 && basketItemsCount > 0 && ( - + {basketItemsCount} )}