From f47f524a843318347860be841fbbf52dfd37e1e6 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 8 Jun 2026 16:26:03 +0000 Subject: [PATCH] =?UTF-8?q?Zoom:=2050%=E2=80=93150%=20in=2010%=20steps,=20?= =?UTF-8?q?default=20100%?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://claude.ai/code/session_01MkM7p8Us3L8YAfLKGA13NS --- app/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/index.html b/app/index.html index 1aa5f05..4aecaa6 100644 --- a/app/index.html +++ b/app/index.html @@ -638,9 +638,9 @@ function updateInvMeta() { } // ── Font-size accessibility ──────────────────────────────────────────────────── -const ZOOMS = [0.8, 0.85, 0.9, 0.95, 1.0, 1.1, 1.2, 1.3]; -const ZOOM_LABELS = ["80%", "85%", "90%", "95%", "100%", "110%", "120%", "130%"]; -let zoomIdx = +(localStorage.getItem("zoomIdx") ?? 4); +const ZOOMS = [0.5,0.6,0.7,0.8,0.9,1.0,1.1,1.2,1.3,1.4,1.5]; +const ZOOM_LABELS = ["50%","60%","70%","80%","90%","100%","110%","120%","130%","140%","150%"]; +let zoomIdx = +(localStorage.getItem("zoomIdx") ?? 5); function applyZoom() { const fr = document.getElementById("form-root");