From 37744dd08d392c7db632fe550b306c47b6215588 Mon Sep 17 00:00:00 2001 From: slweeb <91897291+slweeb@users.noreply.github.com> Date: Tue, 4 Jan 2022 13:53:26 -0500 Subject: [PATCH] disable double tap zoom on mobile --- changelog.txt | 2 +- index.html | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/changelog.txt b/changelog.txt index 22779ceb..bedf42a1 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,7 +1,7 @@ [Future Plans] + Artists' Update (Painting, Lines, Shapes, etc.) + Explosives Update - + Electricity & Machines Update + + ~~Electricity~~ & Machines Update + Mod Manager Update [Version 0.8 - Electricity] diff --git a/index.html b/index.html index fc7e4b03..effe81dd 100644 --- a/index.html +++ b/index.html @@ -236,6 +236,9 @@ flex-wrap:wrap; text-align:center; } + .disable-dbl-tap-zoom { /*Disable double tap zoom on mobile devices*/ + touch-action: manipulation; + }