From c646ee4ff89b74c5ce932c4a925a53ec20ca28f0 Mon Sep 17 00:00:00 2001 From: trba1810 Date: Thu, 10 Aug 2023 01:29:12 +0200 Subject: [PATCH] CSS to disable double-tap zoom globally (on any element) --- Projects/Website/wwwroot/css/app.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Projects/Website/wwwroot/css/app.css b/Projects/Website/wwwroot/css/app.css index 9ed216ac..d5271f54 100644 --- a/Projects/Website/wwwroot/css/app.css +++ b/Projects/Website/wwwroot/css/app.css @@ -206,4 +206,8 @@ pre.console { code { font-family: SourceCodePro, var(--bs-font-monospace), monospace; +} + +* { + touch-action: manipulation; } \ No newline at end of file