elearning/Frontend-Learner/node_modules/@quasar/extras/animate/slideInDown.css

15 lines
204 B
CSS
Raw Normal View History

2026-01-13 10:46:40 +07:00
@keyframes slideInDown {
from {
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
animation-name: slideInDown;
}