style fixes

This commit is contained in:
Kaibu
2021-06-05 18:10:10 +02:00
parent fd7e20a46b
commit 3d60379ed0
20 changed files with 396 additions and 159 deletions

17
cookbook/static/css/app.min.css vendored Normal file
View File

@@ -0,0 +1,17 @@
.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);
}
}