Form in ChatInput are displayed correctly!

This commit is contained in:
Josako
2025-06-13 20:30:56 +02:00
parent 2835486599
commit 3c7460f741
5 changed files with 40 additions and 12 deletions

View File

@@ -0,0 +1,11 @@
/* 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;
}