Skip to content

Commit

Permalink
Disables header max width when sidebar is open
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbs committed Sep 4, 2024
1 parent e183335 commit 25c8ede
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/sidebar/view/SecondarySplitHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const Header = ({
alignItems: "center",
paddingLeft: 2,
paddingRight: 2,
maxWidth: "1460px",
maxWidth: !isSidebarOpen ? "1460px" : undefined,
height: 64,
margin: "auto"
}}>
Expand Down

0 comments on commit 25c8ede

Please sign in to comment.