authentication fix

This commit is contained in:
2026-01-31 11:32:31 -06:00
parent 1d10863887
commit 9ca490075b
8 changed files with 77 additions and 54 deletions
+5 -3
View File
@@ -61,10 +61,12 @@ export const Layout: Component<LayoutProps> = (props) => {
</div>
)}
<main class="flex-1 overflow-auto p-4 md:p-8 pt-4 pb-20 md:pb-8 scroll-smooth relative z-0">
{props.children}
{/* Main Content Area */}
<main class="flex-1 overflow-y-auto overflow-x-hidden p-4 sm:p-6 lg:p-8 pb-32 sm:pb-6">
<div class="max-w-5xl mx-auto w-full">
{props.children}
</div>
</main>
{/* Mobile Bottom Nav */}
<BottomNav currentView={props.currentView} setView={props.setView} />
</div>