From 81501ea41b84fadbd0f017250453261e15eb3509 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Mon, 30 May 2022 16:24:53 +0200 Subject: [PATCH] Web: fix scrollbar on "select a ... to see its details" content The "fix" is just setting the height to 50% instead of 100%, as the latter will make it as big as the entire column; that causes the scrollbar to show, as the column title isn't taken into account. --- web/app/src/assets/base.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/web/app/src/assets/base.css b/web/app/src/assets/base.css index 2178a132..18332a4f 100644 --- a/web/app/src/assets/base.css +++ b/web/app/src/assets/base.css @@ -285,9 +285,8 @@ footer { color: var(--color-text-hint); display: flex; user-select: none; - height: 100%; + height: 50%; justify-content: center; - margin: auto; } .indicator {