fix header overflow
This commit is contained in:
parent
577399407c
commit
fd0a173e9c
@ -9,7 +9,7 @@ function DefaultLayout({ children }: ChildrenProps) {
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Header />
|
<Header />
|
||||||
<main>
|
<main style={{ overflow: 'hidden' }}>
|
||||||
{children}
|
{children}
|
||||||
</main>
|
</main>
|
||||||
<footer className={"bg-secondary"} style={{ width: "100%", clear: 'both', overflow: 'hidden', paddingBottom: 50}}>
|
<footer className={"bg-secondary"} style={{ width: "100%", clear: 'both', overflow: 'hidden', paddingBottom: 50}}>
|
||||||
|
@ -30,6 +30,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 425px) {
|
/* @media screen and (max-width: 425px) {
|
||||||
|
|
||||||
}
|
} */
|
Loading…
Reference in New Issue
Block a user