Skip to content

Commit feb529b

Browse files
authored
Fix alignment on typing indicator (#9367)
1 parent 8f566a4 commit feb529b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

frontend/src/components/features/chat/typing-indicator.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ export function TypingIndicator() {
22
return (
33
<div className="flex items-center space-x-1.5 bg-tertiary px-3 py-1.5 rounded-full">
44
<span
5-
className="w-1.5 h-1.5 bg-gray-400 rounded-full animate-[bounce_0.5s_infinite] translate-y-[-2px]"
5+
className="w-1.5 h-1.5 bg-gray-400 rounded-full animate-[bounce_0.5s_infinite] translate-y-[1px]"
66
style={{ animationDelay: "0ms" }}
77
/>
88
<span
9-
className="w-1.5 h-1.5 bg-gray-400 rounded-full animate-[bounce_0.5s_infinite] translate-y-[-2px]"
9+
className="w-1.5 h-1.5 bg-gray-400 rounded-full animate-[bounce_0.5s_infinite] translate-y-[1px]"
1010
style={{ animationDelay: "75ms" }}
1111
/>
1212
<span
13-
className="w-1.5 h-1.5 bg-gray-400 rounded-full animate-[bounce_0.5s_infinite] translate-y-[-2px]"
13+
className="w-1.5 h-1.5 bg-gray-400 rounded-full animate-[bounce_0.5s_infinite] translate-y-[1px]"
1414
style={{ animationDelay: "150ms" }}
1515
/>
1616
</div>

0 commit comments

Comments
 (0)