Se corrigen bugs de chat en tiempo real

This commit is contained in:
2026-03-04 16:26:45 -06:00
parent e47938001a
commit ec6a72ba0c
6 changed files with 216 additions and 60 deletions
+17
View File
@@ -316,3 +316,20 @@ button:hover {
color: white;
}
.typing-indicator::after {
content: "...";
animation: dots 1.5s infinite;
}
@keyframes dots {
0% {content: ".";}
33% {content: "..";}
66% {content: "...";}
}
#typingIndicator{
font-size:12px;
color:#6c757d;
min-height:18px;
padding-left:5px;
}