From 403eb49de09087fcbd258487b1695a3851899c88 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Sun, 12 Apr 2026 12:06:44 -0400 Subject: [PATCH] fix(chat): prevent New Chat button from stretching full height MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The .btn-new-conv class has flex:1 for the sidebar row layout, but when reused inside .no-conversation (a column flex), it stretched vertically to fill the entire viewport — appearing as a giant purple rectangle. Override with flex:none in the no-conversation context. Co-Authored-By: Claude Opus 4.6 --- frontend/src/views/ChatView.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/src/views/ChatView.vue b/frontend/src/views/ChatView.vue index 31003cb..026dcb6 100644 --- a/frontend/src/views/ChatView.vue +++ b/frontend/src/views/ChatView.vue @@ -639,6 +639,9 @@ onUnmounted(() => { gap: 1rem; color: var(--color-text-muted); } +.no-conversation .btn-new-conv { + flex: none; +} .empty-msg { color: var(--color-text-muted);