Skip to content

Commit f12aa09

Browse files
committed
frontend: fix guide not using full height
In the Qt app the guide does not spawn over the whole window height on large screen and looks broken. Medium and small screen are fine. Current CSS using webkit-fill-available as guide height, but it should expand to the full height of the window.
1 parent a667881 commit f12aa09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontends/web/src/components/guide/guide.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
color: white;
3333
height: 100vh;
3434
/* mobile viewport bug fix */
35-
height: -webkit-fill-available;
35+
max-height: -webkit-fill-available;
3636
margin-right: calc(var(--guide-width) * -1);
3737
overflow-y: auto;
3838
transition: margin-right 0.2s ease, transform 0.2s ease;

0 commit comments

Comments
 (0)