Skip to content

Commit

Permalink
fix #833 Bottom Elements are cut off
Browse files Browse the repository at this point in the history
  • Loading branch information
vegegoku committed Sep 10, 2023
1 parent f1fe9fb commit aeffc61
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,11 @@

body.dui > .dui-layout,
body.dui > .dui-layout-body {
height: calc(100vh);
width: calc(100vw);
max-height: calc(100vh);
height: 100vh;
height: 100dvh;
width: 100vw;
max-height: 100vh;
max-height: 100dvh;
max-width: calc(100vw);
}

Expand Down

0 comments on commit aeffc61

Please sign in to comment.