From 446f52ca6dd03d13043d444a1b03f70cd15f6633 Mon Sep 17 00:00:00 2001 From: marcus hinz Date: Mon, 20 Jul 2026 12:20:10 +0200 Subject: [PATCH] =?UTF-8?q?Settings-Dialog:=20feste=20H=C3=B6he=20min(60re?= =?UTF-8?q?m,=2094vh)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ProjectList.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/components/ProjectList.vue b/src/components/ProjectList.vue index c010b63..b113bba 100644 --- a/src/components/ProjectList.vue +++ b/src/components/ProjectList.vue @@ -789,9 +789,9 @@ onUnmounted(() => window.clearInterval(timer)); position: relative; width: min(48rem, 94vw); max-width: none; - /* Kopf und Aktionszeile stehen fest; nur der Mittelteil (.sbody) scrollt, - wenn das Fenster niedriger ist als der Inhalt. */ - max-height: 94vh; + /* Feste, großzügige Höhe — Kopf und Aktionszeile stehen, nur der + Mittelteil (.sbody) scrollt, wenn er nicht passt. */ + height: min(60rem, 94vh); overflow: hidden; gap: 0.7rem; border-color: var(--surface2); @@ -801,6 +801,7 @@ onUnmounted(() => window.clearInterval(timer)); display: flex; flex-direction: column; gap: 0.7rem; + flex: 1; overflow-y: auto; min-height: 0; margin: 0 -0.5rem;