You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently `react-draggable` uses `transform: translate(...)` to change
position of dragable component. Issue with using of transform is that it
creates a new stacking context and thus prevents some css attributes
like `mix-blend-multiply` from working in child components.
This change adds a new `useTransfrom` property. If `useTransfrom` is
set to false, absolute positioning and left/top offset will be used
instead of using `transfrom`.
0 commit comments