Remove max-width constraint from root layout

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 <noreply@anthropic.com>
This commit is contained in:
RevIQ
2026-01-07 14:01:39 +08:00
parent f8d543565c
commit 9b7b1e8cd9

View File

@@ -9,6 +9,4 @@ interface Props {
let { children }: Props = $props();
</script>
<main class="mx-auto max-w-7xl p-4">
{@render children()}
</main>