Skip to content

Instantly share code, notes, and snippets.

@e200
Created April 27, 2018 08:42
Show Gist options
  • Save e200/3f298321845f419a4234050b861c6312 to your computer and use it in GitHub Desktop.
Save e200/3f298321845f419a4234050b861c6312 to your computer and use it in GitHub Desktop.
.nav li ul {
visibility: collapse;
opacity: 0;
transition-property: opacity, visibility;
transition-duration: $transition-time;
transition-delay: 0s, $transition-time;
}
.nav li:hover ul {
visibility: visible;
opacity: 1;
transition-delay: 0s, 0s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment