From 5fbba9b12ce713d951870e8461ea6a78453c6fd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Thu, 17 Feb 2022 17:34:45 +0100 Subject: [PATCH] [ui] only show scrollbar when necessary in Inspect --- webui/src/components/Inspect.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui/src/components/Inspect.svelte b/webui/src/components/Inspect.svelte index df4dff6..19feba7 100644 --- a/webui/src/components/Inspect.svelte +++ b/webui/src/components/Inspect.svelte @@ -298,7 +298,7 @@ @media screen and (max-height: 1080px) { .main-content { - overflow-y: scroll; + overflow-y: auto; // min-height: 0; }