fix: Spin rotate deg number (#35005)

close #34866
This commit is contained in:
afc163 2022-04-13 13:51:36 +08:00 committed by GitHub
parent bd6cb95514
commit d66784ab7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -162,7 +162,7 @@
}
&-spin {
transform: rotate(45deg);
transform: rotate(0deg);
animation: antRotate 1.2s infinite linear;
}
}
@ -211,7 +211,7 @@
@keyframes antRotate {
to {
transform: rotate(405deg);
transform: rotate(360deg);
}
}