Spaces:
Running
Running
File size: 395 Bytes
9813562 a6e897f 9813562 808f487 9813562 a6e897f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
// src/components/logo/Logo.scss
@keyframes user-pulse-animation {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
}
.user-speaking {
.human-part {
animation: user-pulse-animation 1.5s infinite ease-in-out;
transform-origin: center;
}
}
.ai-speaking-ripple {
transform: scale(var(--ai-voice-scale, 1));
transition: transform 0.15s ease-out;
} |