From 05cf32591f3777725e6b0755a7b36a4b0245b6a0 Mon Sep 17 00:00:00 2001 From: DanielS Date: Tue, 8 Sep 2026 00:20:46 +0200 Subject: [PATCH] style(wizard): unify and minimize top spacing across steps 1-4 --- shop/components/order-wizard.tsx | 42 ++++++++++------------ shop/components/wizard/step-summary.tsx | 20 +++++------ shop/components/wizard/summary-sidebar.tsx | 2 +- 3 files changed, 30 insertions(+), 34 deletions(-) diff --git a/shop/components/order-wizard.tsx b/shop/components/order-wizard.tsx index 707151c..68e91b0 100644 --- a/shop/components/order-wizard.tsx +++ b/shop/components/order-wizard.tsx @@ -923,16 +923,16 @@ export function OrderWizard({ } return ( -
+
-
+
{/* Left Side Status Stepper & Categories for ALL steps */} -
+
-

+

Fortschritt

-

+

Bestell-Wizard

@@ -940,11 +940,11 @@ export function OrderWizard({ {/* Step 3 Categories inside left sidebar */} {step === 3 && ( -
-

+
+

Kategorien

-
+
{visibleCategories.map((cat) => { const sel = selections[cat.id] const hasSelection = (sel?.productIds && sel.productIds.length > 0) || !!sel?.productId @@ -956,7 +956,7 @@ export function OrderWizard({