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

14 lines
233 B
CSS

@keyframes fadeOutBottomRight {
from {
opacity: 1;
transform: translate3d(0, 0, 0);
}
to {
opacity: 0;
transform: translate3d(100%, 100%, 0);
}
}
.fadeOutBottomRight {
animation-name: fadeOutBottomRight;
}