Skip to content

Commit

Permalink
Fixed Mobile Nav Height
Browse files Browse the repository at this point in the history
  • Loading branch information
ojbravo committed Jun 12, 2024
1 parent d82a7c1 commit 98f9edb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const Header = ({ location: { pathname }, links = defaultLinks, ...props }) => {
const handleResize = () => {
const updatedStyles = {}

if (window.matchMedia('(min-width: 640px)').matches) {
if (window.matchMedia('(min-width: 1024px)').matches) {
updatedStyles.height = '44px'
updatedStyles.overflowX = 'visible'
}
Expand Down

0 comments on commit 98f9edb

Please sign in to comment.