diff options
author | Michael Hunteman <michael@huntm.net> | 2024-04-28 08:20:48 -0700 |
---|---|---|
committer | Michael Hunteman <michael@huntm.net> | 2024-04-28 08:20:48 -0700 |
commit | 7995bf91feeb843e7a16ae055f1a571fadb5d2de (patch) | |
tree | a23b384bb06f0ebb71bb1c02ffd1887da1ead183 | |
parent | f25356f9832c0e79c6c1f95bf59ecbd6399c7f96 (diff) |
Change max width for hamburger menu
-rw-r--r-- | src/components/NavBar.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/NavBar.tsx b/src/components/NavBar.tsx index 677828b..52e8e6c 100644 --- a/src/components/NavBar.tsx +++ b/src/components/NavBar.tsx @@ -6,7 +6,7 @@ import Desktop from './Desktop'; import Mobile from './Mobile'; function NavBar() { - const isMobile = useMediaQuery('(max-width: 1000px)'); + const isMobile = useMediaQuery('(max-width: 768px)'); return ( <AppBar position="relative"> |