mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-04-15 21:03:45 +02:00
19 lines
238 B
CSS
19 lines
238 B
CSS
.animate {
|
|
&.fadein {
|
|
animation: fadein 500ms;
|
|
}
|
|
}
|
|
|
|
.fade-enter-active {
|
|
animation: fadein 500ms;
|
|
}
|
|
|
|
.fade-leave-active {
|
|
animation: fadein 500ms reverse;
|
|
}
|
|
|
|
@keyframes fadein {
|
|
from { opacity: 0; }
|
|
to { opacity: 1; }
|
|
}
|