12 lines
278 B
CSS
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;
|
|
}
|