FunctionProject/frontend/components/Loader/Loader.css

13 lines
321 B
CSS
Raw Normal View History

2020-03-21 16:43:37 +01:00
.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);
}
}