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 <noreply@anthropic.com>
This commit is contained in:
Julien Calixte
2026-03-28 22:25:19 +01:00
parent 8767f7c430
commit cd8e173e05

View File

@@ -55,7 +55,7 @@ html {
} }
body { body {
height: 100vh; height: 100dvh;
scroll-behavior: smooth; scroll-behavior: smooth;
overflow-y: auto; overflow-y: auto;
} }
@@ -78,7 +78,7 @@ body {
} }
#app { #app {
height: 100vh; height: 100dvh;
display: flex; display: flex;
} }