From 7ea7765404ff2cc1cc9306bb6ab442382a83dc40 Mon Sep 17 00:00:00 2001 From: Kenneth Date: Sat, 3 Aug 2024 22:54:25 +0100 Subject: [PATCH] fix: wrong body height calc on mid+ viewport --- web/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/style.css b/web/style.css index 90fc4e7..6184892 100644 --- a/web/style.css +++ b/web/style.css @@ -42,7 +42,7 @@ body { body { width: calc(100% - 8rem - 2px); height: calc(100vh - 10rem - 2px); - height: calc(100svh - 6rem - 2px); + height: calc(100svh - 10rem - 2px); padding: 4rem; } }