From a1dda2267260472aa777ef42d9d2f5c36df648f3 Mon Sep 17 00:00:00 2001 From: f0x52 Date: Wed, 30 Nov 2022 13:15:33 +0100 Subject: [PATCH] [bugfix] change page width to prevent scrollbar overflow (#1182) --- web/source/css/base.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/source/css/base.css b/web/source/css/base.css index 73014de8d..023f0ced8 100644 --- a/web/source/css/base.css +++ b/web/source/css/base.css @@ -60,7 +60,7 @@ body { display: grid; min-height: 100%; min-width: 100%; - width: 100vw; + width: 100%; grid-template-columns: auto minmax(auto, 90ch) auto; grid-template-columns: auto min(92%, 90ch) auto;