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

29 lines
438 B
CSS
Raw Normal View History

/*! purgecss start ignore */
.fade-enter {
@apply .opacity-0;
}
.fade-enter-active {
@apply .opacity-100;
transition: opacity 150ms;
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 150ms;
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 */