Created
August 10, 2018 02:12
-
-
Save greyscaled/bd6187c407f55bb2f77445ee83657fc7 to your computer and use it in GitHub Desktop.
This file contains 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
$drawer-width: 80vw; | |
.navigation { | |
&__nav { | |
height: 100%; | |
position: absolute; | |
top: 0; | |
left: 0; | |
z-index: 1000; | |
// this hides the navigation drawer | |
opacity: 0; | |
width: 0; | |
transform: translateX(calc(#{$drawer-width} * -1)); | |
} | |
&__btn:checked ~ &__nav { | |
opacity: 1; | |
width: $drawer-width; | |
transform: translateX(0); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment