fix: relocate typing indicator into the input bubble

Move TypingIndicator from document flow (between MessageList and
MessageInput) into MessageInput's outer wrapper using absolute
bottom-full positioning. Fixes indicator being hidden behind the
floating glass input bubble on desktop.
This commit is contained in:
Jannis Braun
2026-03-04 04:27:26 +01:00
parent f7809cf457
commit 2d6cdd0a3c
5 changed files with 12 additions and 9 deletions
+8
View File
@@ -238,6 +238,14 @@
animation: slideUp 0.15s ease-out;
}
@keyframes typingFadeIn {
from { transform: translateY(4px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
.animate-typing-in {
animation: typingFadeIn 0.15s ease-out;
}
@keyframes gradientPulse {
0%, 100% { opacity: 0.7; }
50% { opacity: 1; }