This commit is contained in:
2026-01-30 20:43:34 +01:00
parent 047c21278e
commit 1cfc92a922
7 changed files with 15 additions and 15 deletions

View File

@@ -36,8 +36,8 @@ export function ContactStep({ state, updateState }: ContactStepProps) {
value={state.name}
onChange={(e) => updateState({ name: e.target.value })}
/>
<div className="absolute top-0 right-4 px-2 py-1 bg-slate-900 text-white text-[10px] font-bold uppercase tracking-wider rounded">
Wichtig
<div className="absolute top-0 right-4 px-2 py-1 bg-slate-100 text-slate-500 text-[10px] font-bold uppercase tracking-wider rounded">
Erforderlich
</div>
</div>
</Reveal>
@@ -53,8 +53,8 @@ export function ContactStep({ state, updateState }: ContactStepProps) {
value={state.email}
onChange={(e) => updateState({ email: e.target.value })}
/>
<div className="absolute top-0 right-4 px-2 py-1 bg-slate-900 text-white text-[10px] font-bold uppercase tracking-wider rounded">
Wichtig
<div className="absolute top-0 right-4 px-2 py-1 bg-slate-100 text-slate-500 text-[10px] font-bold uppercase tracking-wider rounded">
Erforderlich
</div>
</div>
</Reveal>