From f55caa1fe3036a3cf53b439ffd6e738fadc02e00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michaela=20Br=C3=BCckner?= <brueckner@data-quest.de> Date: Wed, 27 Sep 2023 11:08:11 +0000 Subject: [PATCH] auto overflow for help bar, fixes #504 Closes #504 Merge request studip/studip!2192 --- resources/assets/stylesheets/scss/helpbar.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/assets/stylesheets/scss/helpbar.scss b/resources/assets/stylesheets/scss/helpbar.scss index 835834ed36b..6bc0d1bc202 100644 --- a/resources/assets/stylesheets/scss/helpbar.scss +++ b/resources/assets/stylesheets/scss/helpbar.scss @@ -57,6 +57,9 @@ $border-width: 4px; width: $helpbar-width; z-index: 1000; + overflow: auto; + max-height: calc(100vh - 200px); + &::before { border-bottom: 2px solid $base-color-80; border-left: $border-width solid transparent; -- GitLab