From c8b3d0f4e1a3201720c0239153b52becd422ad11 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Tue, 3 Mar 2026 22:06:22 -0500 Subject: [PATCH] Fix dashboard overflow: clip at container boundary, min-width: 0 on grid children Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/views/HomeView.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/HomeView.vue b/frontend/src/views/HomeView.vue index 3d7d046..343b65c 100644 --- a/frontend/src/views/HomeView.vue +++ b/frontend/src/views/HomeView.vue @@ -488,6 +488,7 @@ function clearDashboardResponse() { max-width: 1400px; margin: 2rem auto; padding: 0 1rem; + overflow-x: clip; /* hard boundary — nothing escapes the container */ } /* Chat */ @@ -601,9 +602,11 @@ function clearDashboardResponse() { gap: 2rem; align-items: start; } -/* Prevent grid columns from overflowing their tracks */ +/* Prevent grid children from overflowing their tracks */ .col-tasks, -.col-notes { +.col-notes, +.projects-strip-inline > *, +.notes-mini-grid > * { min-width: 0; }