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

17 lines
258 B
CSS
Raw Normal View History

2023-09-06 14:51:44 +07:00
@keyframes rotateInUpRight {
from {
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
.rotateInUpRight {
animation-name: rotateInUpRight;
transform-origin: right bottom;
}