fix(chat): add bottom padding to messages container to clear input bar

Streaming bubble (Generating response…) was flush against the input
wrapper top border. Give the scroll column 0.75rem of breathing room
so the assistant bubble sits visibly separate from the input.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-15 19:29:14 -04:00
parent 9082281225
commit 5e281c534a
+1 -1
View File
@@ -499,7 +499,7 @@ defineExpose({ focus, prefill, send, contextCount, sidebarOpen, toggleContextSid
grid-column: 2;
grid-row: 1;
overflow-y: auto;
padding: 1rem 1rem 0;
padding: 1rem 1rem 0.75rem;
mask-image: linear-gradient(to bottom, transparent, black 20px, black calc(100% - 20px), transparent);
-webkit-mask-image: linear-gradient(to bottom, transparent, black 20px, black calc(100% - 20px), transparent);
}