Skip to content

Commit

Permalink
Fix scrollbars
Browse files Browse the repository at this point in the history
`100vh` is so...useless.
  • Loading branch information
SavageCore committed Sep 25, 2023
1 parent d9e95eb commit 1e22a94
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/styles/app.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
@import './colors';
@import './theme';

body,
html {
margin: 0;
width: 100%;
height: 100%;
}

#app {
box-sizing: border-box;
width: 100vw;
height: 100%;
min-height: 100%;
overflow-x: hidden;
overflow-y: hidden;
}

.icon {
display: flex;
align-items: center;
Expand Down

0 comments on commit 1e22a94

Please sign in to comment.