Created
October 28, 2018 18:30
-
-
Save alegut/9b62ee49efa9410ab29ca905a9892151 to your computer and use it in GitHub Desktop.
Hamburger menu creation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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