From db1c474e779dd225a4cb4a886e80957140263ff6 Mon Sep 17 00:00:00 2001 From: iFocuspace Date: Sat, 23 May 2026 10:49:02 +0800 Subject: [PATCH] fix(layout): use 100vh fallback for .full-height to unbreak old Chromium WebView (#4278) --- apps/readest-app/src/styles/globals.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/readest-app/src/styles/globals.css b/apps/readest-app/src/styles/globals.css index 2ec32482..7feefbf8 100644 --- a/apps/readest-app/src/styles/globals.css +++ b/apps/readest-app/src/styles/globals.css @@ -74,7 +74,7 @@ body { } .full-height { - height: -webkit-fill-available; + height: 100vh; } @supports (height: 100dvh) {