From b554d62cd77ae5e1ecb67fc87833a7d9b7ca55b2 Mon Sep 17 00:00:00 2001 From: davegilligan Date: Tue, 19 May 2026 13:02:42 +0200 Subject: [PATCH] Fix: force single-column steps grid on mobile to remove stretch gap under step 2 --- assets/css/tools.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/css/tools.css b/assets/css/tools.css index 25cbf85..7444c4f 100644 --- a/assets/css/tools.css +++ b/assets/css/tools.css @@ -7382,8 +7382,8 @@ body.lt-landing { /* ── Simple 3-step pipeline (marketing page) ─────────────────────────── */ .kdoc-steps { display: grid; - grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); - gap: 0; + grid-template-columns: 1fr; + gap: 1rem; margin-top: 1.5rem; position: relative; }