From d1ab2c2b71bfd246ccc799e72e2c02d4684fa5f4 Mon Sep 17 00:00:00 2001 From: Brooke Date: Sun, 12 Jul 2026 02:46:15 -0700 Subject: [PATCH] hotfix: graph overflow --- web/src/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/src/style.css b/web/src/style.css index a1f12e3..0d3f334 100644 --- a/web/src/style.css +++ b/web/src/style.css @@ -323,6 +323,7 @@ button.danger:hover:not(:disabled) { .chart-months span { flex: 1; + min-width: 0; /* shrinkable, so a dozen labels never widen the page */ text-align: center; font-size: 14px; color: var(--text-dim); @@ -392,7 +393,7 @@ button.inline-count:hover { @media (max-width: 640px) { .charts-row { - grid-template-columns: 1fr; + grid-template-columns: minmax(0, 1fr); /* min-content of labels must not widen the page */ } } -- 2.51.2