Make disabled elements not eat up mouse events #74

Closed
thepaperpilot wants to merge 1 commit from thepaperpilot:fix/disabled-mouse-events into main

View file

@ -66,3 +66,7 @@ ul {
.Vue-Toastification__toast {
margin: unset;
}
:disabled {
pointer-events: none;
}