File size: 465 Bytes
2aad597
 
 
80e61b9
 
2aad597
 
 
 
 
 
80e61b9
2aad597
 
 
 
 
 
 
 
 
 
 
 
80e61b9
 
2aad597
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
.typing-indicator {
  display: flex;
  gap: 6px;
  padding: 0.5rem;
  margin-left: 1rem;
  align-items: center;
}

.typing-indicator .dot {
  width: 8px;
  height: 8px;
  background-color: #ccc;
  border-radius: 50%;
  animation: blink 1.4s infinite both;
}

.typing-indicator .dot:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-indicator .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0%, 80%, 100% { opacity: 0; }
  40% { opacity: 1; }
}