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; +}