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.
This commit is contained in:
Jon Seager 2026-02-11 10:07:58 +00:00
parent 049e9d68a8
commit 55addb200c
No known key found for this signature in database

View file

@ -190,6 +190,7 @@ input.input-field[type="number"] {
background-color: var(--surface); background-color: var(--surface);
color: var(--accent); color: var(--accent);
font-weight: 700; font-weight: 700;
touch-action: manipulation;
transition: transition:
background-color 150ms ease, background-color 150ms ease,
color 150ms ease; color 150ms ease;