From 8f4bb03e784a3574c1e497077af687d84db62ade Mon Sep 17 00:00:00 2001 From: buihongduc132 Date: Sun, 7 Jun 2026 02:51:23 +0700 Subject: [PATCH] fix(dashboard): agents view fills full width of parent container Added flex: 1 to .agents-view so it expands to fill the project-content parent instead of shrinking to content width. --- packages/dashboard/app/components/AgentsView.css | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/dashboard/app/components/AgentsView.css b/packages/dashboard/app/components/AgentsView.css index 7780644957..9c4e6a3431 100644 --- a/packages/dashboard/app/components/AgentsView.css +++ b/packages/dashboard/app/components/AgentsView.css @@ -52,6 +52,7 @@ position: relative; display: flex; flex-direction: column; + flex: 1; height: 100%; overflow: hidden; }