From 47e22083e5df56b618cb8c2e93b92643a4e39c8b Mon Sep 17 00:00:00 2001 From: Kenneth Date: Thu, 1 Aug 2024 16:03:36 +0100 Subject: [PATCH] fix: swap height rule order --- web/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/style.css b/web/style.css index 3f72c48..e1b4654 100644 --- a/web/style.css +++ b/web/style.css @@ -31,8 +31,8 @@ body { body { width: calc(100% - 4rem - 2px); - height: calc(100svh - 6rem - 2px); height: calc(100vh - 6rem - 2px); + height: calc(100svh - 6rem - 2px); padding: 2rem; margin: 0; background-color: var(--base);