reduce window minHeight to 120px (#1561)

This commit is contained in:
jeffvli
2026-01-16 03:55:18 -08:00
parent 8a14327aaf
commit 9e57125c96
2 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -274,7 +274,7 @@ async function createWindow(first = true): Promise<void> {
frame: false,
height: 900,
icon: isWindows() ? getAssetPath('icons/icon.ico') : getAssetPath('icons/icon.png'),
minHeight: 640,
minHeight: 120,
minWidth: 480,
show: false,
webPreferences: {
@@ -29,6 +29,12 @@
backdrop-filter: blur(10px);
}
@media (height < 192px) {
.drawer-button {
display: none;
}
}
.main-content {
position: relative;
grid-area: main-content;