Skip to content

Commit

Permalink
Fixing height calcs
Browse files Browse the repository at this point in the history
  • Loading branch information
therobbiedavis committed Apr 25, 2024
1 parent 3c95654 commit 7e014a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion UI/Web/src/app/app.component.scss
Expand Up @@ -21,7 +21,7 @@
.content-wrapper {
padding: 0 5px 0;
overflow: hidden;
height: calc(100vh - 56px);
height: calc(var(--vh)*100 - 56px);

&.closed {
overflow: auto;
Expand Down
Expand Up @@ -99,7 +99,7 @@ form {

.dropdown {
width: 100vw;
height: calc(100vh - 56px); //header offset
height: calc(var(--vh)*100 - 56px); //header offset
background: var(--dropdown-overlay-color);
position: fixed;
justify-content: center;
Expand Down

0 comments on commit 7e014a4

Please sign in to comment.