Move nav style back to global stylesheet

This commit is contained in:
regalijan 2023-10-19 16:50:23 -04:00
parent 93e50d835e
commit 34d34f6300
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520
2 changed files with 6 additions and 7 deletions

View File

@ -68,13 +68,6 @@ export default function (props: {
return ( return (
<> <>
<style media="all and (min-width: 1281px)">
{`
#nav-menu {
display: none
}
`}
</style>
<Box as="section" pb={{ base: "6" }}> <Box as="section" pb={{ base: "6" }}>
<Box as="nav" boxSizing="unset"> <Box as="nav" boxSizing="unset">
<Container display="grid" maxW="container.xl" py={{ base: "6" }}> <Container display="grid" maxW="container.xl" py={{ base: "6" }}>

View File

@ -87,3 +87,9 @@ button:focus-visible {
display: none !important; display: none !important;
} }
} }
@media (min-width: 1281px) {
#nav_menu {
display: none;
}
}