From 4b2faa6639c958331625e23736da8c1ce9d8a9e7 Mon Sep 17 00:00:00 2001 From: RossAscends <124905043+RossAscends@users.noreply.github.com> Date: Mon, 1 May 2023 16:14:28 +0900 Subject: [PATCH] refix for body size on large res monitors zoomed in. --- public/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/style.css b/public/style.css index 3b125f6ee..74e59076b 100644 --- a/public/style.css +++ b/public/style.css @@ -86,7 +86,7 @@ body { /*fallback for JS load*/ height: 100svh; /*defaults as 100%, then reassigned via JS as pixels, will work on PC and Android*/ - height: var(--doc-height); + height: calc(var(--doc-height) - 1px); background-color: var(--greyCAIbg); background-repeat: no-repeat; background-attachment: fixed;