Skip to content

Commit

Permalink
fix(hamburger): add conditional styling to hamburger menu based on state
Browse files Browse the repository at this point in the history
  • Loading branch information
whalekiller03 committed Jul 30, 2024
1 parent 989d7e4 commit 8293df1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const MenuWrapper = styled.div`
flex-direction: column;
background: white;
transition: height 0.3s ease;
padding-bottom: 160px;
padding-bottom: ${(props) => (props.open ? '160px' : 0)};
z-index: 100;
overflow: auto;
`;
Expand Down

0 comments on commit 8293df1

Please sign in to comment.