Settings-Dialog: feste Höhe min(60rem, 94vh)

This commit is contained in:
marcus hinz
2026-07-20 12:20:10 +02:00
parent 8068471120
commit 446f52ca6d
+4 -3
View File
@@ -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;