fix: constrain admin layout to container width matching rest of site

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-06 13:22:15 +01:00
parent d021acaf0b
commit fb38d6b9a9

View File

@@ -14,7 +14,9 @@
} }
</script> </script>
<div class="flex min-h-screen bg-background"> <div class="min-h-screen bg-background">
<div class="container mx-auto px-4">
<div class="flex min-h-screen">
<!-- Sidebar --> <!-- Sidebar -->
<aside class="w-56 shrink-0 border-r border-border/40 bg-card/60 backdrop-blur-sm flex flex-col"> <aside class="w-56 shrink-0 border-r border-border/40 bg-card/60 backdrop-blur-sm flex flex-col">
<div class="px-4 py-5 border-b border-border/40"> <div class="px-4 py-5 border-b border-border/40">
@@ -45,4 +47,6 @@
<main class="flex-1 overflow-auto"> <main class="flex-1 overflow-auto">
{@render children()} {@render children()}
</main> </main>
</div>
</div>
</div> </div>