From 0a36d759e4293f9a61089133d682f26713b85490 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Tue, 18 Nov 2025 09:13:54 +0200 Subject: [PATCH] fix(board): extra bottom margin --- apps/client/src/widgets/collections/board/index.css | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/client/src/widgets/collections/board/index.css b/apps/client/src/widgets/collections/board/index.css index aaf694686..8b6ab9180 100644 --- a/apps/client/src/widgets/collections/board/index.css +++ b/apps/client/src/widgets/collections/board/index.css @@ -1,5 +1,4 @@ .board-view { - overflow-x: auto; position: relative; height: 100%; user-select: none; @@ -20,7 +19,6 @@ body.mobile .board-view { display: flex; gap: 1em; padding: 1em; - padding-bottom: 0; align-items: flex-start; } @@ -127,7 +125,8 @@ body.mobile .board-view-container .board-column { .board-view-container .board-column > .board-column-content { flex-grow: 1; - overflow: scroll; + overflow-x: hidden; + overflow-y: auto; padding: 0.5em; }