add ability to disable mouse input with body attr

This commit is contained in:
thecozies
2024-01-17 10:21:26 -06:00
parent 6460ae1bf9
commit 3759688e72
2 changed files with 5 additions and 1 deletions
+1 -1
View File
File diff suppressed because one or more lines are too long
+4
View File
@@ -12,6 +12,10 @@ body
box-sizing: border-box;
color: $color-text;
font-family: $font-stack;
&[disable-mouse] {
pointer-events: none;
}
}
.rmlui-window {