From 2efba09a3edcd04ff4228099686754ec218e0169 Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 6 Aug 2024 10:03:10 +0200 Subject: [PATCH] fix(#31666): Fix no-cards board behavior to avoid intangible columns --- web_src/css/features/projects.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_src/css/features/projects.css b/web_src/css/features/projects.css index a92f8621c6..0c6d307069 100644 --- a/web_src/css/features/projects.css +++ b/web_src/css/features/projects.css @@ -16,7 +16,7 @@ padding: 0.5rem !important; width: 320px; height: initial; - min-height: 60vh; + min-height: max(calc(100vh - 400px), 300px); flex: 0 0 auto; overflow: visible; display: flex;