hrms-manual/node_modules/@quasar/extras/animate/fadeOutDownBig.css
2023-09-06 14:51:44 +07:00

14 lines
184 B
CSS

@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
animation-name: fadeOutDownBig;
}