fix styles in production

main
Lea 2024-01-18 01:09:36 +01:00
parent 2bc0fbb080
commit 35fe908884
Signed by: Lea
GPG Key ID: 1BAFFE8347019C42
2 changed files with 5 additions and 1 deletions

View File

@ -19,7 +19,7 @@ export default async function RootLayout({
}) {
return (
<html lang="en">
<body className={`p-4`}>
<body className={`p-4 m-0`}>
<ThemeWrapper>
<BackgroundImage />
<AuthWrapper session={await getServerSession()}>

View File

@ -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: [],
};
export default config;