fix: iteration node bg color (#6523)

This commit is contained in:
zxhlyh 2024-07-22 15:43:24 +08:00 committed by GitHub
parent 5e6fc58db3
commit 87594008f8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -92,7 +92,7 @@ const BaseNode: FC<BaseNodeProps> = ({
'group relative pb-1 shadow-xs', 'group relative pb-1 shadow-xs',
'border border-transparent rounded-[15px]', 'border border-transparent rounded-[15px]',
data.type !== BlockEnum.Iteration && 'w-[240px] bg-workflow-block-bg', data.type !== BlockEnum.Iteration && 'w-[240px] bg-workflow-block-bg',
data.type === BlockEnum.Iteration && 'flex flex-col w-full h-full bg-workflow-block-bg/80', data.type === BlockEnum.Iteration && 'flex flex-col w-full h-full bg-[#fcfdff]/80',
!data._runningStatus && 'hover:shadow-lg', !data._runningStatus && 'hover:shadow-lg',
showRunningBorder && '!border-primary-500', showRunningBorder && '!border-primary-500',
showSuccessBorder && '!border-[#12B76A]', showSuccessBorder && '!border-[#12B76A]',