mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 04:10:06 -05:00
17 lines
298 B
CSS
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);
|
|
}
|
|
} |