From 9541ea83e332f8cba14a072aa857f4387ff7427a Mon Sep 17 00:00:00 2001 From: Ruben Carlo Benante Date: Sun, 28 Jun 2026 16:54:23 -0300 Subject: [PATCH] 70 pixels more to test --- Asset/css/shrink-vertically.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Asset/css/shrink-vertically.css b/Asset/css/shrink-vertically.css index d387c2f..029ba1c 100644 --- a/Asset/css/shrink-vertically.css +++ b/Asset/css/shrink-vertically.css @@ -13,7 +13,7 @@ * breathing room). A fixed-px budget is more reliable than a proportional vh value * because that chrome is a fixed height regardless of screen size. * - * Tune the single number below (170px) if the scrollbar is still clipped or if you + * Tune the single number below (240px) if the scrollbar is still clipped or if you * want the columns taller. * * The selector is intentionally more specific than core's single-class rule, and @@ -27,6 +27,6 @@ * (non-important) min-height, so we reset it to 0 and let max-height win. */ #board td .board-task-list.board-task-list-compact { - max-height: calc(100vh - 170px) !important; + max-height: calc(100vh - 240px) !important; min-height: 0 !important; }