From d37a6b43489192a404b32a20378215876d48710f Mon Sep 17 00:00:00 2001 From: DanielS Date: Fri, 10 Jul 2026 15:58:14 +0200 Subject: [PATCH] feat: sticky header with stepper for step 3, sidebar aligns under header --- shop/components/order-wizard.tsx | 18 +++++++++++++----- shop/components/wizard/summary-sidebar.tsx | 2 +- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/shop/components/order-wizard.tsx b/shop/components/order-wizard.tsx index 42c79cf..2f01dea 100644 --- a/shop/components/order-wizard.tsx +++ b/shop/components/order-wizard.tsx @@ -663,10 +663,19 @@ export function OrderWizard({ } return ( -
- {/* Progress Stepper */} - {step !== 3 && ( - +
+ {/* Sticky Header — Stepper für Step 3, normaler Stepper für andere Steps */} + {step === 3 ? ( +
+
+

Schritt 3 von 4 — Software konfigurieren

+
+ +
+ ) : ( +
+ +
)} @@ -732,7 +741,6 @@ export function OrderWizard({ exit={{ opacity: 0, x: -20 }} className="space-y-6" > - +
Zusammenfassung