From 31dcdf874fe25a6d03ac170ee3f38d83b5f330b1 Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 6 Aug 2024 09:37:55 +0200 Subject: [PATCH] fix(#31666): Fix v-scroll brief display at the board level A vertical scrollbar can appears while dragging a card-out, when the column height is higher than the heght-viewport and the board is being reduced (quicker than its contents). Force hidding the scrollbars using overflow:clip. --- web_src/css/features/projects.css | 1 + 1 file changed, 1 insertion(+) diff --git a/web_src/css/features/projects.css b/web_src/css/features/projects.css index deda4e3c34..a92f8621c6 100644 --- a/web_src/css/features/projects.css +++ b/web_src/css/features/projects.css @@ -3,6 +3,7 @@ flex-direction: row; flex-wrap: nowrap; overflow-x: auto; + overflow-y: clip; align-items: stretch; margin: 0 0.5em; }