mirror of
https://github.com/S2-/gitlit
synced 2025-08-03 12:50:04 +02:00
15 lines
173 B
CSS
15 lines
173 B
CSS
@keyframes fadeOutDown {
|
|
from {
|
|
opacity: 1;
|
|
}
|
|
|
|
to {
|
|
opacity: 0;
|
|
transform: translate3d(0, 100%, 0);
|
|
}
|
|
}
|
|
|
|
.fadeOutDown {
|
|
animation-name: fadeOutDown;
|
|
}
|