From bb3f94d39e63b7f4a29b264cd436791f411d0a51 Mon Sep 17 00:00:00 2001 From: Marco Date: Fri, 24 Jul 2026 21:35:41 +0000 Subject: [PATCH] Revert checkout step-number circle borders to the original color MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Only the connector line between steps stays the darker #c4b8a0 — the number circles themselves go back to border-border per feedback. --- app/components/CheckoutSteps.tsx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/app/components/CheckoutSteps.tsx b/app/components/CheckoutSteps.tsx index 8d4ed4b..b0d3be7 100644 --- a/app/components/CheckoutSteps.tsx +++ b/app/components/CheckoutSteps.tsx @@ -20,12 +20,9 @@ function StepCircle({ state, number }: { state: StepState; number: number }) { ); } return ( - // border-[#c4b8a0], not the shared border-border (#e5e0d8) — nearly the - // same luminance as the page's own bg-bg-base (#f8f5f1), barely visible - // (fixed 2026-07-24, feedback: "die Striche bei den Nummern-Steps sind - // zu hell"). Same color as the connector line below and the checkout - // step cards' own border fix, for consistency. -
+ // Back to the shared border-border (reverted 2026-07-24 per feedback — + // only the connector line below should be the darker #c4b8a0). +
{number}
);