misc_pterodactyl-panel/resources/styles/components/animations.css

29 lines
473 B
CSS
Raw Normal View History

/*! purgecss start ignore */
2019-07-28 03:23:44 +00:00
.fade-enter, .fade-appear {
@apply .opacity-0;
}
2019-07-28 03:23:44 +00:00
.fade-enter-active, .fade-appear-active {
@apply .opacity-100;
transition: opacity 250ms;
2018-12-30 23:31:41 +00:00
}
.fade-exit {
@apply .opacity-100;
2018-12-30 23:31:41 +00:00
}
.fade-exit-active {
@apply .opacity-0;
transition: opacity 250ms;
2018-12-30 23:31:41 +00:00
}
2019-06-12 05:02:18 +00:00
/** @todo fix this, hides footer stuff */
div.route-transition-group {
@apply .relative;
& section {
@apply .absolute .w-full .pin-t .pin-l;
}
}
/*! purgecss end ignore */