Fix scroll bug

This commit is contained in:
Timothy Armes
2024-03-11 17:03:41 +01:00
parent 0da539889b
commit 4f5062e1da
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -71,7 +71,7 @@ export default async function RootLayout({
<body> <body>
<Providers> <Providers>
<NextIntlClientProvider locale={locale} messages={messages}> <NextIntlClientProvider locale={locale} messages={messages}>
<div className="bg-white pb-40 font-sans leading-normal tracking-normal dark:bg-gray-800"> <div className="bg-white font-sans leading-normal tracking-normal dark:bg-gray-800">
{children} {children}
</div> </div>
+1 -1
View File
@@ -12,7 +12,7 @@ export default function Home() {
const t = useTranslations("Home"); const t = useTranslations("Home");
return ( return (
<div className="min-h-[100vh] bg-white dark:bg-gray-800"> <div className="min-h-[100vh] bg-white pb-40 dark:bg-gray-800">
<div className="relative mb-20 max-h-[400px]"> <div className="relative mb-20 max-h-[400px]">
<Image <Image
src={bannerImage} src={bannerImage}