Typing indicator for GUI

This commit is contained in:
2024-03-09 03:20:24 -05:00
parent 0ab585943f
commit 16c1d680cb
2 changed files with 34 additions and 1 deletions

View File

@@ -72,3 +72,22 @@ body {
background-color: #2980b9;
color: #ecf0f1;
}
@keyframes ellipsis {
0%, 20% {
content: '';
}
40% {
content: '.';
}
60% {
content: '..';
}
80%, 100% {
content: '...';
}
}
.ellipsis::after {
content: '';
animation: ellipsis 2s infinite;
}