From 0d170214c21204088254d7502b4bde0fd9a79133 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Thu, 2 Nov 2023 23:41:59 +0100 Subject: Don't use 100vh as it doesn't work on chrome. Try using 100% as a workaround... maybe it'll behave better on browsers that don't support dvh yet. --- public/common/client.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'public') diff --git a/public/common/client.css b/public/common/client.css index b763e25..d5d69fc 100644 --- a/public/common/client.css +++ b/public/common/client.css @@ -94,9 +94,9 @@ html { env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px); - width: 100vw; + width: 100%; width: 100dvw; - height: 100vh; + height: 100%; height: 100dvh; } -- cgit v1.2.3