style(kanban-card): add transition effects to card wrapper classes for smoother animations

This commit is contained in:
Illia Filippov
2025-12-30 02:01:13 +01:00
parent ab0cd95d9a
commit 88bb5b923f

View File

@@ -111,7 +111,7 @@ export const KanbanCard = memo(function KanbanCard({
const cardStyle = getCardBorderStyle(cardBorderEnabled, cardBorderOpacity);
const wrapperClasses = cn(
'relative select-none outline-none touch-none',
'relative select-none outline-none touch-none transition-transform duration-200 ease-out',
getCursorClass(isOverlay, isDraggable),
isOverlay && isLifted && 'scale-105 rotate-1 z-50'
);