From 9504b986ab8c2d305bdf55c3ba2c8f9b3c1e22cf Mon Sep 17 00:00:00 2001 From: Andy Smith Date: Mon, 15 Dec 2025 16:07:51 -0600 Subject: [PATCH] Tighten up column padding on mobile --- app/assets/stylesheets/card-columns.css | 1 + 1 file changed, 1 insertion(+) diff --git a/app/assets/stylesheets/card-columns.css b/app/assets/stylesheets/card-columns.css index 53257fae1..0cf8e655a 100644 --- a/app/assets/stylesheets/card-columns.css +++ b/app/assets/stylesheets/card-columns.css @@ -223,6 +223,7 @@ /* Use the rest of the column height for scrolling */ @media (max-width: 639px) { flex: 1; + padding-inline: calc(var(--column-padding) / 4); } }