Skip to content

Instantly share code, notes, and snippets.

@hgwood
Last active August 29, 2015 13:58
Show Gist options
  • Save hgwood/10020096 to your computer and use it in GitHub Desktop.
Save hgwood/10020096 to your computer and use it in GitHub Desktop.
#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