misc_pterodactyl-panel/resources/styles/components/animations.css
2019-07-27 20:23:44 -07:00

28 lines
473 B
CSS

/*! purgecss start ignore */
.fade-enter, .fade-appear {
@apply .opacity-0;
}
.fade-enter-active, .fade-appear-active {
@apply .opacity-100;
transition: opacity 250ms;
}
.fade-exit {
@apply .opacity-100;
}
.fade-exit-active {
@apply .opacity-0;
transition: opacity 250ms;
}
/** @todo fix this, hides footer stuff */
div.route-transition-group {
@apply .relative;
& section {
@apply .absolute .w-full .pin-t .pin-l;
}
}
/*! purgecss end ignore */