Skip to content

Commit

Permalink
fix(base.module.css): Set container height based on position in page.
Browse files Browse the repository at this point in the history
  • Loading branch information
binh-dam-ibigroup committed Jul 14, 2023
1 parent 246709a commit c351f61
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions styles/base.module.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
.wrapper {
bottom: 0;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 90vh 10vh;
height: 100vh;
width: 100vw;
grid-template-rows: 90% 10%;
position: fixed;
top: 0;
width: 100%;
}

.question {
Expand Down

0 comments on commit c351f61

Please sign in to comment.