hopefully fix mobile viewport weirdness

This commit is contained in:
hippoz 2022-08-02 22:36:18 +03:00
parent 3bcf605ef9
commit 314a7f2be0
Signed by: hippoz
GPG key ID: 7C52899193467641

View file

@ -57,11 +57,14 @@
--radius-lg: calc(2 * var(--radius-unit));
--radius-xl: calc(3.25 * var(--radius-unit));
--radius-xxl: calc(5.25 * var(--sradius-unit));
--100vw: calc(100.0 * 1vw);
--100vh: calc(100.0 * 1vh);
}
html, body {
width: 100%;
height: 100%;
width: var(--100vw);
height: var(--100vh);
}
body {