html + css: prevent zooming on iOS while tapping fast
Fast tapping on iOS device is like double click. To prevent zooming fill into css:
:root {
touch-action: pan-x pan-y;
height: 100%
}
If it's not working on :root try html.
Source: https://stackoverflow.com/a/60516252/13334678
No comments to display
No comments to display