feat: update WorkflowNodeIcon background color for improved visibility

This commit is contained in:
mlogclub
2026-06-28 20:06:18 +08:00
parent 4be707c871
commit c47aee7780
2 changed files with 2 additions and 2 deletions
@@ -135,7 +135,7 @@ export function WorkflowConfigPanel({
<WorkflowNodeIcon
icon={panelIcon}
size="sm"
className="rounded-md bg-[#2575FC] text-white shadow-none"
className="rounded-md shadow-none"
/>
<div className="min-w-0 flex-1">
<Input
@@ -18,7 +18,7 @@ export function WorkflowNodeIcon({
return (
<span
className={cn(
"flex shrink-0 items-center justify-center rounded-lg bg-muted text-muted-foreground shadow-sm",
"flex shrink-0 items-center justify-center rounded-lg bg-[#2575FC] text-white shadow-sm",
size === "md" ? "size-7" : "size-6",
className
)}