From 30bdfb9fdd880a34fcab1e666fe15b1880961d96 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Thu, 21 Sep 2017 11:37:03 -0400 Subject: [PATCH] Disable touch actions on all elements, except vertical scroll disables stupid chrome gestures --- style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/style.css b/style.css index 408d955..0a78c64 100644 --- a/style.css +++ b/style.css @@ -1,3 +1,7 @@ +* { + touch-action: pan-y; +} + body { margin: 0 0 0 0; }