From 95e348f842ef3ba76f993008da4e59c4b2b8820e Mon Sep 17 00:00:00 2001 From: Robert Long Date: Fri, 10 Dec 2021 14:31:54 -0800 Subject: [PATCH] Safari 100vh fix --- src/Room.module.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Room.module.css b/src/Room.module.css index 567a55c..0641f4a 100644 --- a/src/Room.module.css +++ b/src/Room.module.css @@ -19,7 +19,8 @@ limitations under the License. display: flex; flex-direction: column; width: 100vw; - height: 100vh; + min-height: 100vh; + min-height: -webkit-fill-available; overflow: hidden; }