From cd8e173e0514a8366daf24bcaf10f72cd8225628 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sat, 28 Mar 2026 22:25:19 +0100 Subject: [PATCH] fix: use 100dvh for body and #app to match dynamic viewport Prevents white space below the app on Android Chrome where the system nav bar makes 100vh > 100dvh. Co-Authored-By: Claude Sonnet 4.6 --- src/styles/app.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles/app.css b/src/styles/app.css index 7cd0612..a035db9 100644 --- a/src/styles/app.css +++ b/src/styles/app.css @@ -55,7 +55,7 @@ html { } body { - height: 100vh; + height: 100dvh; scroll-behavior: smooth; overflow-y: auto; } @@ -78,7 +78,7 @@ body { } #app { - height: 100vh; + height: 100dvh; display: flex; }