From 72f76980b82205de42dabf64d5a8217035e5cda2 Mon Sep 17 00:00:00 2001 From: mini Date: Wed, 5 Aug 2026 23:57:14 +0900 Subject: [PATCH] =?UTF-8?q?fix(dashboard):=20Agent=EA=B0=80=20=EC=A4=80?= =?UTF-8?q?=EB=B9=84=ED=95=9C=20=EB=82=B4=EC=9A=A9=20=ED=8C=A8=EB=84=90?= =?UTF-8?q?=EC=9D=B4=20=EC=98=86=20=EC=BB=AC=EB=9F=BC=20=EB=86=92=EC=9D=B4?= =?UTF-8?q?=EB=A7=8C=ED=81=BC=20=EB=8A=98=EC=96=B4=EB=82=98=EA=B2=8C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit .agentPrepared에 고정된 height: 539px 때문에 왼쪽 primaryColumn이 늘어나도 오른쪽 패널이 안 따라가던 거 고침. grid stretch 쓰게 height: 100% + min-height: 0으로 바꾸고 dashboardGrid에 align-items: stretch 명시. 1080px 이하 스택 레이아웃은 기존 height:auto/max-height:539px 그대로 유지. Closes #260 --- src/pages/DashboardPage/DashboardPage.module.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pages/DashboardPage/DashboardPage.module.css b/src/pages/DashboardPage/DashboardPage.module.css index d242980..2e0f6c7 100644 --- a/src/pages/DashboardPage/DashboardPage.module.css +++ b/src/pages/DashboardPage/DashboardPage.module.css @@ -146,6 +146,7 @@ .dashboardGrid { display: grid; grid-template-columns: minmax(0, 767px) minmax(0, 359px); + align-items: stretch; gap: 26px; margin-top: 16px; } @@ -424,8 +425,9 @@ .agentPrepared { display: flex; - height: 539px; + height: 100%; min-width: 0; + min-height: 0; flex-direction: column; gap: 15px; padding: 16px;