@copilotkit/react-ui
Version:
<img src="https://github.com/user-attachments/assets/0a6b64d9-e193-4940-a3f6-60334ac34084" alt="banner" style="border-radius: 12px; border: 2px solid #d6d4fa;" />
36 lines (33 loc) • 667 B
CSS
.copilotKitActivityDot1 {
animation: copilotKitActivityDotsAnimation 1.05s infinite;
}
.copilotKitActivityDot2 {
animation-delay: 0.1s;
}
.copilotKitActivityDot3 {
animation-delay: 0.2s;
}
@keyframes copilotKitActivityDotsAnimation {
0%,
57.14% {
animation-timing-function: cubic-bezier(0.33, 0.66, 0.66, 1);
transform: translate(0);
}
28.57% {
animation-timing-function: cubic-bezier(0.33, 0, 0.66, 0.33);
transform: translateY(-6px);
}
100% {
transform: translate(0);
}
}
@keyframes copilotKitSpinAnimation {
to {
transform: rotate(360deg);
}
}
@keyframes copilotKitPulseAnimation {
50% {
opacity: 0.5;
}
}