From 80d3a3f6a7bea35a75004d0329e1434e2c1a9644 Mon Sep 17 00:00:00 2001 From: OFF0 Date: Wed, 16 Aug 2023 18:17:55 +0200 Subject: [PATCH] view: prevent scrolling navigation elements scrolling on navigation moved the whole view up, this change prevents nav from being scrollable. --- src/styles/main.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/styles/main.css b/src/styles/main.css index e250050..f905b3c 100644 --- a/src/styles/main.css +++ b/src/styles/main.css @@ -106,9 +106,10 @@ body { } html, body { - min-height: 100%; height: 100%; margin: 0; + min-height: 100%; + overflow: clip; } h1, h2, h3, h4, h5 { font-weight: normal; }