mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-09 20:29:36 +02:00
reduce window minHeight to 120px (#1561)
This commit is contained in:
+1
-1
@@ -274,7 +274,7 @@ async function createWindow(first = true): Promise<void> {
|
|||||||
frame: false,
|
frame: false,
|
||||||
height: 900,
|
height: 900,
|
||||||
icon: isWindows() ? getAssetPath('icons/icon.ico') : getAssetPath('icons/icon.png'),
|
icon: isWindows() ? getAssetPath('icons/icon.ico') : getAssetPath('icons/icon.png'),
|
||||||
minHeight: 640,
|
minHeight: 120,
|
||||||
minWidth: 480,
|
minWidth: 480,
|
||||||
show: false,
|
show: false,
|
||||||
webPreferences: {
|
webPreferences: {
|
||||||
|
|||||||
@@ -29,6 +29,12 @@
|
|||||||
backdrop-filter: blur(10px);
|
backdrop-filter: blur(10px);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (height < 192px) {
|
||||||
|
.drawer-button {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.main-content {
|
.main-content {
|
||||||
position: relative;
|
position: relative;
|
||||||
grid-area: main-content;
|
grid-area: main-content;
|
||||||
|
|||||||
Reference in New Issue
Block a user