fix the issue where content is not fully displayed when there are too many branches.

This commit is contained in:
Yoan.liu 2025-03-13 17:22:34 +08:00
parent be822ccc93
commit 83447fff62

View File

@ -31,7 +31,7 @@ const WorkflowElements = ({ className, style, disabled }: WorkflowElementsProps)
return (
<div className={className} style={style}>
<div className="flex flex-col items-center overflow-auto">{elements}</div>
<div className="flex w-max min-w-full flex-col items-center">{elements}</div>
</div>
);
};