Disable text selection while dragging

This commit is contained in:
Emi Simpson 2023-07-04 22:40:31 -04:00
parent 1e6c72f067
commit 20eec8b9ee
Signed by: Emi
GPG Key ID: A12F2C2FFDC3D847
1 changed files with 6 additions and 1 deletions

View File

@ -126,4 +126,9 @@ input
position: relative
top: -40px
left: -40px
pointer-events: none
pointer-events: none
// Disable selection while dragging a tile
// broken on latest firefox tho
body:has( > #floaty-tile)
user-select: none