From 22b75a6b30b95a629304eb27ed88edf9faf68f03 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Sun, 20 Oct 2019 21:33:43 -0400 Subject: [PATCH] [+] Add .unselectable to global css --- src/components/app/app.scss | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/components/app/app.scss b/src/components/app/app.scss index d316132..a85555f 100644 --- a/src/components/app/app.scss +++ b/src/components/app/app.scss @@ -71,3 +71,14 @@ div.el-card.course-card > div.el-card__body text-decoration: underline; cursor: pointer; } + +// Non-selectable text +.unselectable +{ + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +}