From 81d170248445a52c0ec35940b229b01e431d5df2 Mon Sep 17 00:00:00 2001 From: iven Date: Wed, 8 Apr 2026 09:29:30 +0800 Subject: [PATCH] fix(chat): replace h-full with flex-1 min-h-0 for ChatArea container h-full = 100% of parent height, but TopBar already occupies 56px above. This caused ChatArea to overflow by 56px, pushing the input box below the visible viewport. flex-1 + min-h-0 correctly fills remaining space in the flex column layout. --- desktop/src/components/ChatArea.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/src/components/ChatArea.tsx b/desktop/src/components/ChatArea.tsx index 1a4698c..8fd93a1 100644 --- a/desktop/src/components/ChatArea.tsx +++ b/desktop/src/components/ChatArea.tsx @@ -266,7 +266,7 @@ export function ChatArea() { ); return ( -
+
{/* Generation progress overlay */} {generating && (