fix: spinner animation
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user