Cam Tullos

Results 12 comments of Cam Tullos

I have the same problem in a fixed div.

I solved this by mutating the `provided.draggableProps.style.left` and `provided.draggableProps.style.right` values when `provided.isDragging` is `true` ``` {(provided, snapshot) => { if (snapshot.isDragging) { const offset = { x: 100, y: 100...