From 266b18eb0cbaa5cbd30b984c5bba9dd80fa03224 Mon Sep 17 00:00:00 2001 From: buihongduc132 Date: Sun, 7 Jun 2026 03:29:50 +0700 Subject: [PATCH] fix(dashboard): chat-view fills full width of parent container MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Same pattern as agents-view fix — .chat-view had display:flex + height:100% but no flex or width, so it shrank to content width (~270px) instead of filling the .project-content parent. --- packages/dashboard/app/components/ChatView.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/dashboard/app/components/ChatView.css b/packages/dashboard/app/components/ChatView.css index 9559207c93..ef8380d15f 100644 --- a/packages/dashboard/app/components/ChatView.css +++ b/packages/dashboard/app/components/ChatView.css @@ -2,6 +2,8 @@ .chat-view { display: flex; + flex: 1; + width: 100%; height: 100%; overflow: hidden; }