From fc6ee4ff78e0dcfbb2d0ccca1177d8d6d8098b98 Mon Sep 17 00:00:00 2001 From: David Lechner Date: Sun, 17 Jan 2021 15:59:11 -0600 Subject: [PATCH] disable selecting (outside of editor and terminal) --- src/index.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/index.scss b/src/index.scss index d447317d..a7ad1e20 100644 --- a/src/index.scss +++ b/src/index.scss @@ -12,6 +12,7 @@ body { // no scrolling of the page overflow: hidden; + user-select: none; } // Utility classes @@ -39,6 +40,10 @@ body { // global style tweaks +.#{$ns}-dialog { + user-select: none; +} + .#{$ns}-form-group > .#{$ns}-label { font-weight: bolder; }