mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
23 lines
393 B
CSS
23 lines
393 B
CSS
.loader {
|
|
border-top-color: theme("colors.green.500");
|
|
-webkit-animation: spinner 1.5s linear infinite;
|
|
animation: spinner 1.5s linear infinite;
|
|
}
|
|
|
|
@-webkit-keyframes spinner {
|
|
0% {
|
|
-webkit-transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
-webkit-transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
@keyframes spinner {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|