mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-29 06:14:45 +02:00

This supports moving away from multiple-theme support in the Panel since that is no longer going to be offered.
11 lines
128 B
CSS
11 lines
128 B
CSS
.animate {
|
|
&.fadein {
|
|
animation: fadein 500ms;
|
|
}
|
|
}
|
|
|
|
@keyframes fadein {
|
|
from { opacity: 0; }
|
|
to { opacity: 1; }
|
|
}
|