From 55addb200c86f2babe778d20bdb63368e469816c Mon Sep 17 00:00:00 2001 From: Jon Seager Date: Wed, 11 Feb 2026 10:07:58 +0000 Subject: [PATCH] fix: prevent double-tap zoom on mobile stepper buttons Add touch-action: manipulation to .btn-adjust so rapid taps on +/- buttons no longer trigger the browser's double-tap-to-zoom gesture. --- static/css/input.css | 1 + 1 file changed, 1 insertion(+) diff --git a/static/css/input.css b/static/css/input.css index 5c2abb2..198a833 100644 --- a/static/css/input.css +++ b/static/css/input.css @@ -190,6 +190,7 @@ input.input-field[type="number"] { background-color: var(--surface); color: var(--accent); font-weight: 700; + touch-action: manipulation; transition: background-color 150ms ease, color 150ms ease;