Skip to content

Commit

Permalink
enhance: improve colors and remove borders for workflow steps UX
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanhopperlowe committed Jan 6, 2025
1 parent 488650b commit 1c5cf9b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/admin/app/components/workflow/steps/StepBase.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ export function StepBase({
}
};
return (
<div className={cn("border rounded-md bg-background", className)}>
<div className={cn("rounded-md bg-background", className)}>
<div
className={cn(
"flex items-start gap-2 p-3 bg-muted",
"flex items-start gap-2 p-3 bg-background-secondary",
showExpanded ? "rounded-t-md" : "rounded-md"
)}
>
Expand Down Expand Up @@ -106,7 +106,7 @@ export function StepBase({
placeholder={fieldConfig.placeholder}
maxHeight={100}
minHeight={0}
className="flex-grow bg-background-secondary"
className="flex-grow bg-background"
onClick={(e) => e.stopPropagation()}
/>

Expand Down

0 comments on commit 1c5cf9b

Please sign in to comment.