From dd8b09102bdd32b6e7bfe3b9b90eed43fec12574 Mon Sep 17 00:00:00 2001 From: Maximilian Giller <m.giller@tu-bs.de> Date: Sat, 1 Oct 2022 00:09:52 +0200 Subject: [PATCH] Fixed vertical overflow hidden --- src/editor/components/sidepanel.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/editor/components/sidepanel.css b/src/editor/components/sidepanel.css index ae2f5c8..ff9685c 100644 --- a/src/editor/components/sidepanel.css +++ b/src/editor/components/sidepanel.css @@ -1,6 +1,8 @@ .editor-sidepanel { /* resize: horizontal; */ - overflow: auto; + max-height: 85%; + overflow-y: auto; + overflow-x: hidden; min-width: 300px; height: inherit; margin: 0.3rem 0.3rem 0.3rem auto; -- GitLab