misc_pterodactyl-panel/resources/styles/components/animations.css
2020-07-03 14:19:05 -07:00

28 lines
474 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 .top-0 .left-0;
}
}
/*! purgecss end ignore */