Created
April 27, 2018 08:42
-
-
Save e200/3f298321845f419a4234050b861c6312 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
.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