Skip to content

Commit

Permalink
fixing some height calcs
Browse files Browse the repository at this point in the history
  • Loading branch information
therobbiedavis committed Apr 25, 2024
1 parent 5a37f69 commit 7f4e99d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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
2 changes: 1 addition & 1 deletion openapi.json
Expand Up @@ -7,7 +7,7 @@
"name": "GPL-3.0",
"url": "https://github.com/Kareadita/Kavita/blob/develop/LICENSE"
},
"version": "0.8.0.9"
"version": "0.8.1.0"
},
"servers": [
{
Expand Down

0 comments on commit 7f4e99d

Please sign in to comment.