Skip to content

Commit 7642f84

Browse files
committed
Fix margin-bottom in footer
1 parent cdc72bd commit 7642f84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pages/_app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export default function MyApp({ Component, pageProps, router }: AppProps) {
6969
<Component {...pageProps} location={router.asPath} />
7070
</div>
7171

72-
<Footer location={router.asPath} marginBottom={consented || consented == null ? 3 : 80} />
72+
<Footer location={router.asPath} marginBottom={consented || consented === null ? 3 : 80} />
7373
</div>
7474
</div>
7575
}

0 commit comments

Comments
 (0)