Last active
August 29, 2015 13:58
-
-
Save hgwood/10020096 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
#search-result .ng-enter { | |
transition: 0.2s linear all; | |
opacity: 0; | |
line-height: 0em; | |
} | |
#search-result .ng-enter-active { | |
opacity: 1; | |
line-height: inherit; | |
} | |
#search-result .ng-leave { | |
transition: 0.2s linear all; | |
opacity: 1; | |
line-height: inherit; | |
} | |
#search-result .ng-leave-active { | |
opacity: 0; | |
line-height: 0em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment