Skip to content

Instantly share code, notes, and snippets.

@alegut
Created October 28, 2018 18:30
Show Gist options
  • Save alegut/9b62ee49efa9410ab29ca905a9892151 to your computer and use it in GitHub Desktop.
Save alegut/9b62ee49efa9410ab29ca905a9892151 to your computer and use it in GitHub Desktop.
Hamburger menu creation
.DrawerToggle {
width: 40px;
height: 100%;
display: flex;
flex-flow: column;
justify-content: space-around;
align-items: center;
padding: 10px 0;
box-sizing: border-box;
cursor: pointer;
}
.DrawerToggle div {
width: 90%;
height: 3px;
background-color: white;
}
@media (min-width: 500px) {
.DrawerToggle {
display: none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment