Open Andrioden opened 7 months ago
Problem I have an box that is draggable with a header+content part. I want the header part to be the drag-handle, and the content scrollable. However, since neodrag sets touch-action: none on the whole box, scrolling no longer work.
box
header
content
touch-action: none
Solution / Workaround css
.box{ touch-action: auto !important; } .box .header { touch-action: none; } .box .content { overflow-y: auto; }
Problem I have an
box
that is draggable with aheader
+content
part. I want theheader
part to be the drag-handle, and thecontent
scrollable. However, since neodrag setstouch-action: none
on the whole box, scrolling no longer work.Solution / Workaround css