diff --git a/package.json b/package.json index 69d9c55..3ffa51a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "materialette", "productName": "Materialette", - "version": "1.2.2", + "version": "1.2.3", "description": "Material Color Palette for macOS, Windows, and Linux", "main": "index.js", "scripts": { diff --git a/styles/main.css b/styles/main.css index 7fb13c2..86a7561 100644 --- a/styles/main.css +++ b/styles/main.css @@ -2413,7 +2413,11 @@ body { #mode-selector { display: -ms-flexbox; - display: flex; } + display: flex; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } #mode-selector:hover { color: #00e5ff; } diff --git a/styles/main.scss b/styles/main.scss index 213cd4f..e662419 100644 --- a/styles/main.scss +++ b/styles/main.scss @@ -104,6 +104,7 @@ body { #mode-selector { display: flex; + user-select: none; } #mode-selector:hover { color: #00e5ff;