feat: added spinner

This commit is contained in:
2025-01-17 12:36:37 +01:00
parent d2aa4f4dd7
commit af935e7465
5 changed files with 34 additions and 7 deletions
+19
View File
@@ -0,0 +1,19 @@
.spinner {
width: 48px;
height: 48px;
border: 5px solid #FFF;
border-bottom-color: transparent;
border-radius: 50%;
display: inline-block;
box-sizing: border-box;
animation: spinner_rotation 1s linear infinite;
}
@keyframes spinner_rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}