User Drag

class
properties
drag-none
-webkit-user-drag: none;
drag-element
-webkit-user-drag: element;
drag-auto
-webkit-user-drag: auto;

How to disable it?

tailwindcssAddons({
  utilities: {
    drag: false,
  },
})
Return to top