Skip to content

Commit 7f85a33

Browse files
committed
frontend: fix app container sometimes shrinks
Current CSS limits height to a maximum of -webkit-available-height this caused the app to not use full height if there is not enough content to push the containers to at least the window heihgt.
1 parent 033caf5 commit 7f85a33

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

frontends/web/src/style/layout.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@
6868
.appContent {
6969
height: 100vh;
7070
/* mobile viewport bug fix */
71-
height: -webkit-fill-available;
72-
max-height: 100vh;
71+
max-height: -webkit-fill-available;
7372
}
7473

7574
@media (max-width: 900px) {

0 commit comments

Comments
 (0)