websync / components /alert /Loading.module.css
Shivam
Initial commit: Web-SyncPlay moved into Streamer
d092f57
.loading {
font-family: monospace;
display: inline-block;
clip-path: inset(0 3ch 0 0);
animation: l 1s steps(4) infinite;
}
@keyframes l {
to {
clip-path: inset(0 -1ch 0 0);
}
}