From 9b7b1e8cd92f9d1cec5802b29131693e251a1d5a Mon Sep 17 00:00:00 2001 From: RevIQ Date: Wed, 7 Jan 2026 14:01:39 +0800 Subject: [PATCH] Remove max-width constraint from root layout MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The root +layout.svelte had max-w-7xl and mx-auto which constrained the entire app to 1280px centered. Removed to allow full-width layout where sidebar extends to the left edge of the viewport. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- apps/publisher-dashboard/src/routes/+layout.svelte | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/publisher-dashboard/src/routes/+layout.svelte b/apps/publisher-dashboard/src/routes/+layout.svelte index 8a36018..7dcf9e5 100644 --- a/apps/publisher-dashboard/src/routes/+layout.svelte +++ b/apps/publisher-dashboard/src/routes/+layout.svelte @@ -9,6 +9,4 @@ interface Props { let { children }: Props = $props(); -
- {@render children()} -
+{@render children()}