hrms-manual/node_modules/@quasar/extras/animate/backOutDown.css

21 lines
279 B
CSS
Raw Normal View History

2023-09-06 14:51:44 +07:00
@keyframes backOutDown {
0% {
transform: scale(1);
opacity: 1;
}
20% {
transform: translateY(0px) scale(0.7);
opacity: 0.7;
}
100% {
transform: translateY(700px) scale(0.7);
opacity: 0.7;
}
}
.backOutDown {
animation-name: backOutDown;
}