From 28893cf6371447b048d0a18d03bdb15a43d2b587 Mon Sep 17 00:00:00 2001 From: Martin Filser Date: Mon, 5 Jun 2023 12:58:52 +0200 Subject: [PATCH] Bugfix, in View "Lists" the first column only showed the first 10 minicards, now all minicards again --- client/components/lists/list.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/client/components/lists/list.css b/client/components/lists/list.css index 066fda4ca..5b33612da 100644 --- a/client/components/lists/list.css +++ b/client/components/lists/list.css @@ -15,8 +15,10 @@ /*resize: both; - List width and height resizeable */ /* overflow: auto; - List width and height resizeable */ } -.list:first-child { +[id^="swimlane-"] .list:first-child { min-width: 20px; +} +.list:first-child { margin-left: 5px; border-left: none; }