From 226f435a171dd3ffcfea766133a234ba5a586bb6 Mon Sep 17 00:00:00 2001 From: Shpuld Shpuldson Date: Thu, 2 Nov 2017 11:27:52 +0200 Subject: [PATCH 1/2] Add user-select: none to i elements. --- src/App.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/App.scss b/src/App.scss index 23f7304fe5..ff403ef861 100644 --- a/src/App.scss +++ b/src/App.scss @@ -7,6 +7,10 @@ min-height: 100vh; } +i { + user-select: none; +} + h4 { margin: 0; } From f897c656fc2a8739e006e77ba0db50f00e136ad7 Mon Sep 17 00:00:00 2001 From: Shpuld Shpuldson Date: Thu, 2 Nov 2017 16:27:34 +0200 Subject: [PATCH 2/2] Also disable select on buttons --- src/App.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/src/App.scss b/src/App.scss index ff403ef861..fd44dfb8ef 100644 --- a/src/App.scss +++ b/src/App.scss @@ -34,6 +34,7 @@ a { } button{ + user-select: none; border: none; border-radius: 5px; cursor: pointer;