feat: grabbing cursor for deals dnd

This commit is contained in:
2025-08-01 14:30:42 +04:00
parent 921ab4c89f
commit 943b2d63f5

View File

@ -207,7 +207,9 @@ const StatusColumnsDnd: FC<Props> = props => {
/> />
))} ))}
<DragOverlay dropAnimation={defaultDropAnimation}> <DragOverlay dropAnimation={defaultDropAnimation}>
<div style={{ cursor: "grabbing" }}>
{activeDeal ? <DealCard deal={activeDeal} /> : null} {activeDeal ? <DealCard deal={activeDeal} /> : null}
</div>
</DragOverlay> </DragOverlay>
</Group> </Group>
</DndContext> </DndContext>