fix: spinner animation

This commit is contained in:
2025-10-16 22:19:24 +02:00
parent 3b2b596014
commit 07be307035
2 changed files with 23 additions and 3 deletions

View File

@@ -4184,7 +4184,28 @@ select.param-input:focus {
width: 48px;
height: 48px;
color: var(--accent-primary);
animation: spin 1s linear infinite;
}
.overlay-spinner .spinner circle {
animation: pulse 1.5s ease-in-out infinite;
stroke-dasharray: none;
stroke-dashoffset: 0;
transform-origin: center;
}
@keyframes pulse {
0% {
opacity: 0.3;
transform: scale(0.6);
}
50% {
opacity: 1;
transform: scale(1.0);
}
100% {
opacity: 0.3;
transform: scale(0.6);
}
}
.overlay-text {