Skip to content

Commit

Permalink
fix(#14): scroll issue test
Browse files Browse the repository at this point in the history
  • Loading branch information
KimHunJin committed Jan 1, 2022
1 parent 4edd3c2 commit d6c2c0c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion styles/globals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,8 @@ textarea {
.background {
background-color: #F1F2F4;
position: relative;
height: 100vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
height: calc(var(--vh, 1vh) * 100);
}

.background-title {
Expand Down Expand Up @@ -423,7 +425,8 @@ textarea {
display: block;
position: relative;
max-width: 420px;
height: 100vh;
overflow: hidden;
margin: 0 auto;
height: 100vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
height: calc(var(--vh, 1vh) * 100);
}

0 comments on commit d6c2c0c

Please sign in to comment.