From 6bc965e86d1d5215a1b82e4b8410ce494f09b258 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milan=20Martin=20J=C3=A4ckel?= Date: Wed, 5 Aug 2026 17:08:28 +0200 Subject: [PATCH] fixed zoom issue --- app/static/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/static/style.css b/app/static/style.css index 299a8c2..a40681b 100644 --- a/app/static/style.css +++ b/app/static/style.css @@ -23,7 +23,8 @@ html { body { display: grid; - min-height: 100vh; + /* Compensate for html zoom:0.8 so grid fills viewport visually */ + min-height: calc(100vh / 0.8); grid-template-rows: auto 1fr auto; margin: 0; color: var(--text);