Layout fixes

This commit is contained in:
2026-03-11 14:59:29 -05:00
parent 001d7ad3c1
commit 6617574c16
8 changed files with 59 additions and 47 deletions
+2 -2
View File
@@ -10,7 +10,7 @@ const AppContainer: Component<AppContainerProps> = (props) => {
<div class="min-h-screen bg-gray-50/50">
{/* Top Navigation Bar */}
<header class="bg-white border-b border-gray-200 sticky top-0 z-10 no-print">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="max-w-[1800px] w-full mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center gap-8">
<div class="flex-shrink-0 flex items-center">
@@ -39,7 +39,7 @@ const AppContainer: Component<AppContainerProps> = (props) => {
</header>
{/* Main Content Area */}
<main class="max-w-6xl mx-auto p-4 sm:p-6 lg:p-8">
<main class="max-w-[1800px] w-full mx-auto p-4 sm:p-6 lg:p-8">
{props.children}
</main>
</div>