From 5e281c534ae5ae2ad3845cc98be2439ad61cce78 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Wed, 15 Apr 2026 19:29:14 -0400 Subject: [PATCH] fix(chat): add bottom padding to messages container to clear input bar MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- frontend/src/components/ChatPanel.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/ChatPanel.vue b/frontend/src/components/ChatPanel.vue index 3c19ff1..7327d85 100644 --- a/frontend/src/components/ChatPanel.vue +++ b/frontend/src/components/ChatPanel.vue @@ -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); }