fix header overflow

This commit is contained in:
NCanggoro 2023-09-01 23:28:25 +07:00
parent 577399407c
commit fd0a173e9c
2 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ function DefaultLayout({ children }: ChildrenProps) {
return (
<>
<Header />
<main>
<main style={{ overflow: 'hidden' }}>
{children}
</main>
<footer className={"bg-secondary"} style={{ width: "100%", clear: 'both', overflow: 'hidden', paddingBottom: 50}}>

View File

@ -30,6 +30,6 @@
}
}
@media screen and (max-width: 425px) {
/* @media screen and (max-width: 425px) {
}
} */