style(wizard): show numbers instead of check icons in progress stepper

This commit is contained in:
DanielS
2026-07-10 11:18:40 +02:00
parent 0b268881a1
commit 0a9997e98a

View File

@@ -715,7 +715,7 @@ export function OrderWizard({
: 'bg-slate-800 text-slate-400'
}`}
>
{step > s ? <Check className="w-6 h-6" /> : s}
{s}
</div>
<span className={`text-xs font-semibold ${step >= s ? 'text-primary' : 'text-slate-500'}`}>
{s === 1 ? 'Kunde' : s === 2 ? 'Modell' : s === 3 ? 'Software' : 'Abschluss'}
@@ -1039,7 +1039,7 @@ export function OrderWizard({
: 'bg-slate-800 text-slate-400'
}`}
>
{step > s ? <Check className="w-6 h-6" /> : s}
{s}
</div>
<span className={`text-xs font-semibold ${step >= s ? 'text-primary' : 'text-slate-500'}`}>
{s === 1 ? 'Kunde' : s === 2 ? 'Modell' : s === 3 ? 'Software' : 'Abschluss'}