PuruVJ / neodrag

One Draggable to rule them all 💍
https://neodrag.dev
MIT License
1.61k stars 48 forks source link

Unable to combine draggable with scrollable on mobile #147

Open Andrioden opened 7 months ago

Andrioden commented 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.

image

Solution / Workaround css


.box{
    touch-action: auto !important;
}

.box .header {
    touch-action: none;
}

.box .content {
    overflow-y: auto;
}