Files
recipes/cookbook/static/css/app.min.css
2021-06-05 18:10:10 +02:00

17 lines
298 B
CSS

.spinner-tandoor {
animation: rotation 3s infinite linear;
content: url("../assets/spinner.svg");
width: auto;
height: 20vh;
margin: 0;
padding: 0;
}
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}