react-nestable
react-nestable copied to clipboard
Custom styling for items placeholder
Is it possible to change styling of item's placeholder, when dragging?
I am trying to access it by passing what I need to class hierarchy, and this doesn't seem to be working. In example I use
styled-components
.
& > .nestable > .nestable-list > nestable-item { &::before { background-color: grey; } }
Any luck with this? I'm trying to do this as well.
Actually, just figured it out. You can use
.nestable-item::before { //your styles background-color: transparent !important; }