From 27206068d49397d3ccb6dbb4b02453e8b8089d28 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sun, 27 Aug 2023 22:30:16 -0500 Subject: [PATCH] refactor(style): ensure body sets min height to 100vh --- assets/style/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/style/style.css b/assets/style/style.css index 8f8852d..28537d8 100644 --- a/assets/style/style.css +++ b/assets/style/style.css @@ -59,7 +59,6 @@ * webpage was too narrow (Mobile devices). */ html, body { - max-width: 100vw; overflow-x: hidden; padding: 0; margin: 0; @@ -71,6 +70,7 @@ html { } body { + min-height: 100vh; padding-top: var(--navbar-height); line-height: 1.6; display: flex;