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

15 lines
233 B
CSS
Raw Normal View History

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