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; position: relative;
width: min(48rem, 94vw); width: min(48rem, 94vw);
max-width: none; max-width: none;
/* Kopf und Aktionszeile stehen fest; nur der Mittelteil (.sbody) scrollt, /* Feste, großzügige Höhe — Kopf und Aktionszeile stehen, nur der
wenn das Fenster niedriger ist als der Inhalt. */ Mittelteil (.sbody) scrollt, wenn er nicht passt. */
max-height: 94vh; height: min(60rem, 94vh);
overflow: hidden; overflow: hidden;
gap: 0.7rem; gap: 0.7rem;
border-color: var(--surface2); border-color: var(--surface2);
@@ -801,6 +801,7 @@ onUnmounted(() => window.clearInterval(timer));
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 0.7rem; gap: 0.7rem;
flex: 1;
overflow-y: auto; overflow-y: auto;
min-height: 0; min-height: 0;
margin: 0 -0.5rem; margin: 0 -0.5rem;