We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43ccb90 commit 86d25a2Copy full SHA for 86d25a2
src/App.css
@@ -16,6 +16,12 @@
16
format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
17
}
18
19
+@supports (height: 100svh) {
20
+ :root {
21
+ --full-svh: 100svh;
22
+ }
23
+}
24
+
25
/* Needed for the fallbacks below */
26
@supports (height: -webkit-fill-available) {
27
:root {
@@ -34,9 +40,7 @@ body,
34
40
.WorkbenchContainer,
35
41
.Workbench {
36
42
width: 100%;
37
- /* --vvh set by VisualViewPortCSSVariables */
38
- height: var(--vvh, var(--webkit-vvh, 100vh));
39
- overflow: hidden;
43
+ height: var(--full-svh, 100vh);
44
45
body {
46
overflow: hidden;
0 commit comments