Skip to content

Commit 9ef43cf

Browse files
petrapazkresimir-coko
authored andcommitted
3610 - sf
1 parent e6bc9af commit 9ef43cf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

client/src/pages/platform/workflow-editor/nodes/AiAgentNode.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ const AiAgentNode = ({data, id}: {data: NodeDataType; id: string}) => {
142142
<HoverCardTrigger>
143143
<Button
144144
className={twMerge(
145-
'size-18 focus-visible:ring-stroke-brand-focus flex w-full flex-col items-center justify-center rounded-md border-2 border-stroke-neutral-tertiary bg-surface-neutral-primary p-4 shadow hover:border-stroke-brand-secondary-hover hover:bg-surface-neutral-primary hover:shadow-none active:bg-surface-neutral-primary'
145+
'size-18 flex w-full flex-col items-center justify-center rounded-md border-2 border-stroke-neutral-tertiary bg-surface-neutral-primary p-4 shadow hover:border-stroke-brand-secondary-hover hover:bg-surface-neutral-primary hover:shadow-none focus-visible:ring-stroke-brand-focus active:bg-surface-neutral-primary'
146146
)}
147147
onClick={handleNodeClick}
148148
>

client/src/pages/platform/workflow-editor/nodes/ReadOnlyNode.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const ReadOnlyNode = ({data}: {data: NodeDataType}) => (
1010
<div className="relative flex cursor-grab items-center justify-center">
1111
<Button
1212
className={twMerge(
13-
'size-18 focus-visible:ring-stroke-brand-focus cursor-grab rounded-md border-2 border-stroke-neutral-tertiary bg-surface-neutral-primary p-4 text-primary shadow hover:border-stroke-brand-secondary-hover hover:bg-surface-neutral-primary hover:shadow-none active:bg-surface-neutral-primary [&_svg]:size-9'
13+
'size-18 cursor-grab rounded-md border-2 border-stroke-neutral-tertiary bg-surface-neutral-primary p-4 text-primary shadow hover:border-stroke-brand-secondary-hover hover:bg-surface-neutral-primary hover:shadow-none focus-visible:ring-stroke-brand-focus active:bg-surface-neutral-primary [&_svg]:size-9'
1414
)}
1515
>
1616
{data.icon}

client/src/pages/platform/workflow-editor/nodes/WorkflowNode.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ const WorkflowNode = ({data, id}: {data: NodeDataType; id: string}) => {
279279
<HoverCardTrigger>
280280
<Button
281281
className={twMerge(
282-
'size-18 focus-visible:ring-stroke-brand-focus rounded-md border-2 border-stroke-neutral-tertiary bg-surface-neutral-primary p-4 text-primary shadow hover:border-stroke-brand-secondary-hover hover:bg-surface-neutral-primary hover:shadow-none active:bg-surface-neutral-primary [&_svg]:size-9',
282+
'size-18 rounded-md border-2 border-stroke-neutral-tertiary bg-surface-neutral-primary p-4 text-primary shadow hover:border-stroke-brand-secondary-hover hover:bg-surface-neutral-primary hover:shadow-none focus-visible:ring-stroke-brand-focus active:bg-surface-neutral-primary [&_svg]:size-9',
283283
isSelected &&
284284
workflowNodeDetailsPanelOpen &&
285285
!isMainRootClusterElement &&

0 commit comments

Comments
 (0)