Skip to content

Commit

Permalink
fix(style): replace to dvh from vh (#2914)
Browse files Browse the repository at this point in the history
  • Loading branch information
ykzts committed Oct 9, 2023
1 parent 5fdcb34 commit 04f4edb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion app/_components/background.module.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.container {
bottom: 0;
height: 100vh;
height: 100%;
height: 100dvh;
left: 0;
overflow: hidden;
position: fixed;
Expand Down
3 changes: 2 additions & 1 deletion app/layout.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
.wrapper {
display: grid;
grid-template-rows: 1fr auto;
min-height: 100vh;
min-height: 100dvh;
min-height: 100dvh;
}
}

Expand Down

0 comments on commit 04f4edb

Please sign in to comment.