fix(detail): give Results Over Time chart more height on desktop #78

Merged
tudor merged 1 commits from fix/detail-trend-chart-taller into main 2026-07-21 21:08:34 +00:00
2 changed files with 8 additions and 2 deletions
Showing only changes of commit 32f8a02862 - Show all commits
@@ -855,7 +855,10 @@
/* Charts Section */
.chartContainer {
width: 100%;
height: 280px;
/* Taller on desktop so the trend lines have vertical room to separate
and read clearly. Mobile overrides this to height:auto below (the
max-width:768px query), so this only affects desktop. */
height: 380px;
position: relative;
}
@@ -490,7 +490,10 @@
/* ── Charts & Map ────────────────────────────────────── */
.chartContainer {
width: 100%;
height: 280px;
/* Taller on desktop so the trend lines have vertical room to separate
and read clearly. Mobile overrides this to height:auto below (the
max-width:768px query), so this only affects desktop. */
height: 380px;
position: relative;
}