From e7304950892be722d8ea4221f3f6bf66a0573f47 Mon Sep 17 00:00:00 2001 From: Eduard Wisch Date: Wed, 8 Apr 2026 16:22:45 +0200 Subject: [PATCH] fix: zwei Scrollbalken weg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - canvas-area: min-height 80vh entfernt (nahm immer 80% Bildschirmhöhe ein, auch wenn der Inhalt kleiner war) - canvas-wrap: overflow:auto und flex:1 entfernt — kein eigener Scrollbalken in der Mitte mehr, der Body scrollt natürlich Co-Authored-By: Claude Opus 4.6 (1M context) [deploy] --- css/bericht.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/css/bericht.css b/css/bericht.css index 0ccc497..6ceae12 100644 --- a/css/bericht.css +++ b/css/bericht.css @@ -62,7 +62,6 @@ border: 1px solid var(--colorboxbordertitle1, transparent); border-radius: 6px; padding: 10px; - min-height: 80vh; display: flex; flex-direction: column; } .bericht-toolbar { @@ -102,7 +101,7 @@ } .bericht-canvas-wrap { - flex: 1; position: relative; overflow: auto; + position: relative; background: var(--colorbackvmenu1, #444); padding: 10px; border-radius: 4px; display: flex; align-items: flex-start; justify-content: center;