13 lines
321 B
CSS
13 lines
321 B
CSS
.Loader {
|
|
transform-origin: 50% 50%; animation: .9s linear 0s infinite normal forwards running Loader__spin;
|
|
}
|
|
|
|
@keyframes Loader__spin {
|
|
0% {
|
|
animation-timing-function: cubic-bezier(0.5856,0.0703,0.4143,0.9297);
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
} |