chore(standalone/setup): bring back spinner

This commit is contained in:
Elian Doran
2026-03-24 09:09:21 +02:00
parent b6ea29ffc9
commit c1d8637fec
3 changed files with 51 additions and 43 deletions

View File

@@ -109,4 +109,43 @@ body.setup {
}
}
}
.lds-ring {
display: inline-block;
position: relative;
width: 60px;
height: 60px;
&>div {
box-sizing: border-box;
display: block;
position: absolute;
width: var(--size, 48px);
height: var(--size, 48px);
margin: 8px;
border: 6px solid black;
border-radius: 50%;
animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
border-color: black transparent transparent transparent;
&:nth-child(1) {
animation-delay: -0.45s;
}
&:nth-child(2) {
animation-delay: -0.3s;
}
&:nth-child(3) {
animation-delay: -0.15s;
}
}
}
}
@keyframes lds-ring {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}