From 2414f9db5d7c0e910906ea469795a9eb9d3197f7 Mon Sep 17 00:00:00 2001 From: Jorch Date: Sat, 1 Aug 2026 22:25:31 -0300 Subject: [PATCH] fix: make landing page fully responsive for mobile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix ambient glow overflow using min() with viewport units - Scale down nav items and logo on small screens - Improve hero section padding/spacing for mobile - Make CTA buttons stack vertically on mobile - Adjust tool grid for better tablet layout (2→3→4 cols) - Scale prism graph to 70vw max on smaller viewports - Add overflow-x-hidden to prevent horizontal scroll - Reduce section padding across all mobile breakpoints - Fix heading clamp() for better mobile rendering Closes #3 /claim #3 --- frontend/src/pages/LandingPage.tsx | 56 +++++++++++++++--------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/frontend/src/pages/LandingPage.tsx b/frontend/src/pages/LandingPage.tsx index baede37..a771d7e 100644 --- a/frontend/src/pages/LandingPage.tsx +++ b/frontend/src/pages/LandingPage.tsx @@ -35,7 +35,7 @@ const steps = [ export default function LandingPage() { return ( -
+
{/* ── CSS ─────────────────────────────────────────────── */}