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:
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user