Skip to content

Commit

Permalink
feat: change how we set page size
Browse files Browse the repository at this point in the history
  • Loading branch information
yifanwww committed Dec 6, 2023
1 parent d0d557b commit bec3e14
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.clientArea {
display: grid;
height: 100%;
overflow: hidden;
color: #fff;
user-select: none;
Expand Down
6 changes: 3 additions & 3 deletions packages/app-renderer/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ code {
}

#app {
display: grid;
width: 100vw;
height: 100vh;
position: fixed;
width: 100%;
height: 100%;
}
10 changes: 4 additions & 6 deletions packages/app-renderer/src/utils/frameless/Frameless.module.scss
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
#Window {
display: grid;
width: 100vw;
height: 100vh;
width: 100%;
height: 100%;
}

#TitleBar {
display: grid;
width: 100vw;
height: 100vh;
width: 100%;
height: 100%;
}

0 comments on commit bec3e14

Please sign in to comment.