Skip to content

Instantly share code, notes, and snippets.

@johnrhampton
Created September 22, 2016 13:19
Show Gist options
  • Save johnrhampton/d4725030ef5a5ce656004c8d5c27b763 to your computer and use it in GitHub Desktop.
Save johnrhampton/d4725030ef5a5ce656004c8d5c27b763 to your computer and use it in GitHub Desktop.
/**
* loading component styles
*/
.dissolve-animation.hide-remove {
display: inline !important;
}
.dissolve-animation.hide-remove,
.dissolve-animation.hide-add {
-webkit-transition: 0.8s linear all;
-moz-transition: 0.8s linear all;
-o-transition: 0.8s linear all;
transition: 0.8s linear all;
}
.dissolve-animation.hide-remove.hide-remove-active,
.dissolve-animation.hide-add {
opacity: 1;
}
.dissolve-animation.hide-add.hide-add-active,
.dissolve-animation.hide-remove {
opacity: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment