interactionsVercel
Prevent Double-tap Zoom
MUST
MUST: `touch-action: manipulation` to prevent double-tap zoom; set `-webkit-tap-highlight-color` to match design
Set touch-action: manipulation on controls
Bad
Good
Why it matters
Mobile browsers delay click events by ~300ms to detect double-tap zoom. Setting touch-action: manipulation removes this delay for interactive elements, making the interface feel more responsive.
References