mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-27 23:54:45 +02:00
20 lines
281 B
CSS
20 lines
281 B
CSS
/*! purgecss start ignore */
|
|
.fade-enter {
|
|
@apply .opacity-0;
|
|
}
|
|
|
|
.fade-enter-active {
|
|
@apply .opacity-100;
|
|
transition: opacity 150ms;
|
|
}
|
|
|
|
.fade-exit {
|
|
@apply .opacity-100;
|
|
}
|
|
|
|
.fade-exit-active {
|
|
@apply .opacity-0;
|
|
transition: opacity 150ms;
|
|
}
|
|
/*! purgecss end ignore */
|