fix: Use inline styles for centering to bypass Tailwind compilation issue

This commit is contained in:
fullsizemalt 2025-12-20 21:47:31 -08:00
parent e3858b8640
commit 86757c20d7

View file

@ -26,7 +26,10 @@ export default function RootLayout({
<AuthProvider>
<PreferencesProvider>
<Navbar />
<main className="container mx-auto max-w-7xl px-4 sm:px-6 lg:px-8 py-6 flex-1">
<main
className="container py-6 flex-1"
style={{ maxWidth: '1280px', marginLeft: 'auto', marginRight: 'auto', paddingLeft: '1rem', paddingRight: '1rem' }}
>
{children}
</main>
<Footer />