fix: Fixed issue on desktop where custom titlebar would overlap with preferences view header

This commit is contained in:
Aman Harwara
2023-04-21 19:21:00 +05:30
parent ab5b292364
commit 87cd75d324
4 changed files with 42 additions and 37 deletions

View File

@@ -37,7 +37,6 @@ panel-resizer {
display: flex;
justify-content: space-between;
z-index: 99999;
position: absolute;
width: 100%;
top: 0;
}
@@ -84,3 +83,14 @@ input,
.panel-resizer {
-webkit-app-region: no-drag;
}
body {
display: flex;
flex-direction: column;
height: 100%;
overflow: hidden;
}
#app-group-root {
min-height: 0;
}