Fix dashboard overflow: clip at container boundary, min-width: 0 on grid children

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-03 22:06:22 -05:00
parent 7fed77318d
commit c8b3d0f4e1
+5 -2
View File
@@ -488,6 +488,7 @@ function clearDashboardResponse() {
max-width: 1400px; max-width: 1400px;
margin: 2rem auto; margin: 2rem auto;
padding: 0 1rem; padding: 0 1rem;
overflow-x: clip; /* hard boundary — nothing escapes the container */
} }
/* Chat */ /* Chat */
@@ -601,9 +602,11 @@ function clearDashboardResponse() {
gap: 2rem; gap: 2rem;
align-items: start; align-items: start;
} }
/* Prevent grid columns from overflowing their tracks */ /* Prevent grid children from overflowing their tracks */
.col-tasks, .col-tasks,
.col-notes { .col-notes,
.projects-strip-inline > *,
.notes-mini-grid > * {
min-width: 0; min-width: 0;
} }