Skip to content

Instantly share code, notes, and snippets.

@greyscaled
Created August 10, 2018 02:12
Show Gist options
  • Save greyscaled/bd6187c407f55bb2f77445ee83657fc7 to your computer and use it in GitHub Desktop.
Save greyscaled/bd6187c407f55bb2f77445ee83657fc7 to your computer and use it in GitHub Desktop.
$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