Styling
Styling the item you're currently dragging.
Swapy adds the data attribute data-swapy-dragging
to the item element that the user is currently dragging.
You can use that to style the item element in CSS.
.item[data-swapy-dragging] {
opacity: 0.6;
}