fix: Use inline styles for centering to bypass Tailwind compilation issue
This commit is contained in:
parent
e3858b8640
commit
86757c20d7
1 changed files with 4 additions and 1 deletions
|
|
@ -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 />
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue