bug: disable user-select on drag handles

This commit is contained in:
Matthew Pearson 2023-05-06 02:19:38 -07:00
parent bdecc00c81
commit a147a28222

View File

@ -102,6 +102,10 @@
position: absolute; position: absolute;
z-index: 99; z-index: 99;
outline: none; outline: none;
user-select: none;
-webkit-user-select: none; // Safari
-moz-user-select: none; // Firefox
-ms-user-select: none; // IE 10 and IE 11
&:active { &:active {
transition: background-color 0.1s ease-in-out; transition: background-color 0.1s ease-in-out;