Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Move nav style back to global stylesheet
  • Loading branch information
regalijan committed Oct 19, 2023
1 parent 93e50d8 commit 34d34f6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
7 changes: 0 additions & 7 deletions components/Navigation.tsx
Expand Up @@ -68,13 +68,6 @@ export default function (props: {

return (
<>
<style media="all and (min-width: 1281px)">
{`
#nav-menu {
display: none
}
`}
</style>
<Box as="section" pb={{ base: "6" }}>
<Box as="nav" boxSizing="unset">
<Container display="grid" maxW="container.xl" py={{ base: "6" }}>
Expand Down
6 changes: 6 additions & 0 deletions index.css
Expand Up @@ -87,3 +87,9 @@ button:focus-visible {
display: none !important;
}
}

@media (min-width: 1281px) {
#nav_menu {
display: none;
}
}

0 comments on commit 34d34f6

Please sign in to comment.