fix styles in production
This commit is contained in:
parent
2bc0fbb080
commit
35fe908884
|
@ -19,7 +19,7 @@ export default async function RootLayout({
|
||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<body className={`p-4`}>
|
<body className={`p-4 m-0`}>
|
||||||
<ThemeWrapper>
|
<ThemeWrapper>
|
||||||
<BackgroundImage />
|
<BackgroundImage />
|
||||||
<AuthWrapper session={await getServerSession()}>
|
<AuthWrapper session={await getServerSession()}>
|
||||||
|
|
|
@ -13,6 +13,10 @@ const config: Config = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
corePlugins: {
|
||||||
|
// This messes up the button styles for some reason, but only in production builds
|
||||||
|
preflight: false,
|
||||||
|
},
|
||||||
plugins: [],
|
plugins: [],
|
||||||
};
|
};
|
||||||
export default config;
|
export default config;
|
||||||
|
|
Loading…
Reference in a new issue