From d3c90849051cffb344dacd94cc48f5f3faeadf63 Mon Sep 17 00:00:00 2001 From: George Nikitin Date: Tue, 30 Jul 2024 13:11:36 +1200 Subject: [PATCH] user-select: none --- client/src/App.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/client/src/App.scss b/client/src/App.scss index 5943d7c..6bdd5d1 100644 --- a/client/src/App.scss +++ b/client/src/App.scss @@ -15,6 +15,14 @@ max-height: 100vh; font-size: 18px; font-family: Verdana, sans-serif; + + // Block user-select in browser + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } #root {