From 40a459e752d6b56b6317cfdb21a9ef99d738c71f Mon Sep 17 00:00:00 2001 From: Yusuf Suleman Date: Mon, 30 Mar 2026 21:57:18 -0500 Subject: [PATCH] =?UTF-8?q?fix:=20match=20mockup=20container=20width=20?= =?UTF-8?q?=E2=80=94=20layout=20main=20uncapped=20to=201380px,=20remove=20?= =?UTF-8?q?padding=20conflict?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Dashboard surface now renders at 1280px matching the React mockup exactly. All 9 pages verified: zero mobile overflow. Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend-v2/src/routes/(app)/+layout.svelte | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend-v2/src/routes/(app)/+layout.svelte b/frontend-v2/src/routes/(app)/+layout.svelte index d4cfb08..d4326b2 100644 --- a/frontend-v2/src/routes/(app)/+layout.svelte +++ b/frontend-v2/src/routes/(app)/+layout.svelte @@ -45,16 +45,16 @@ } main { flex: 1; - padding: 16px; + padding: 0 16px; width: 100%; - max-width: 640px; + max-width: 100%; margin: 0 auto; } @media (min-width: 768px) { main { - padding: 20px; - max-width: 1200px; + padding: 0; + max-width: 1380px; } }