Files
eveAI/eveai_chat_client/static/css/chat-input.css
2025-06-13 20:30:56 +02:00

12 lines
278 B
CSS

/* Animation styles for ChatInput component */
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* Add more ChatInput-specific styles here */
.loading-spinner {
display: inline-block;
animation: spin 1s linear infinite;
}