diff --git a/src/components/interactive-builder/draggable-question.component.tsx b/src/components/interactive-builder/draggable-question.component.tsx index 446be3a..9cf22f8 100644 --- a/src/components/interactive-builder/draggable-question.component.tsx +++ b/src/components/interactive-builder/draggable-question.component.tsx @@ -42,22 +42,23 @@ export const DraggableQuestion: React.FC = ({ }); const style = { transform: CSS.Translate.toString(transform), - cursor: isDragging ? "grabbing" : "grab", }; + const dragStyles = isDragging ? styles.isDragged : styles.normal; return (
-
- +
+
+ +

{question.label}

-