Files
cmgd-mini-app/uni_modules/nutui-uni/styles/animation/rotate.scss
2026-01-05 12:47:14 +08:00

12 lines
146 B
SCSS

@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@include make-animation(nutRotate);