Added back border transition for handles

This commit is contained in:
Emir Karabeg
2025-02-11 19:43:17 -08:00
parent 866ce994fd
commit 867a4f8279

View File

@@ -120,6 +120,7 @@ export function WorkflowBlock({ id, data, selected }: NodeProps<WorkflowBlockPro
'!bg-white !rounded-full !border !border-gray-200',
'group-hover:!border-blue-500',
'!cursor-crosshair',
'transition-[border-color] duration-150',
horizontalHandles ? '!left-[-7px]' : '!top-[-7px]'
)}
data-nodeid={id}
@@ -210,6 +211,7 @@ export function WorkflowBlock({ id, data, selected }: NodeProps<WorkflowBlockPro
'!bg-white !rounded-full !border !border-gray-200',
'group-hover:!border-blue-500',
'!cursor-crosshair',
'transition-[border-color] duration-150',
horizontalHandles ? '!right-[-7px]' : '!bottom-[-7px]'
)}
data-nodeid={id}