feat: improve condition node form layout and enhance flowgram node renderer styling

This commit is contained in:
mlogclub
2026-06-28 09:28:04 +08:00
parent 2bde314820
commit 6a402cff78
2 changed files with 4 additions and 6 deletions
@@ -25,7 +25,7 @@ export function FlowgramNodeRenderer(props: WorkflowNodeProps) {
<WorkflowNodeRenderer
node={props.node}
className={cn(
"w-[360px] overflow-hidden rounded-lg border bg-background shadow-[0_2px_6px_rgba(0,0,0,0.04),0_4px_12px_rgba(0,0,0,0.02)] transition-colors",
"w-[360px] overflow-visible rounded-lg border bg-background shadow-[0_2px_6px_rgba(0,0,0,0.04),0_4px_12px_rgba(0,0,0,0.02)] transition-colors",
selected ? "border-[#4e40e5]" : "border-[rgba(6,7,9,0.15)]"
)}
style={{ padding: 0 }}