Skip to content

Commit 2bb927a

Browse files
committed
fix: use valid tailwind accent border classes
1 parent 4483c1f commit 2bb927a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/chat-components/ChatToolControls.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const ToolChip = React.forwardRef<
4949
{...props}
5050
className={cn(
5151
"tw-h-8 tw-rounded-full tw-border tw-border-border tw-px-3 tw-text-xs tw-font-medium tw-text-normal tw-transition-colors",
52-
active && "tw-border-accent tw-text-accent tw-bg-accent/10",
52+
active && "tw-border-interactive-accent tw-text-accent tw-bg-accent/10",
5353
className
5454
)}
5555
>

src/components/chat-components/SuggestedPrompts.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export const SuggestedPrompts: React.FC<SuggestedPromptsProps> = ({ onClick }) =
134134
key={path.title}
135135
type="button"
136136
onClick={() => onClick(path.prompt)}
137-
className="hover:tw-border-accent tw-group tw-flex tw-min-h-[104px] tw-flex-col tw-justify-between tw-gap-3 tw-rounded-xl tw-border tw-border-border tw-p-4 tw-text-left tw-transition-colors tw-bg-secondary/20 hover:tw-bg-accent/10"
137+
className="tw-group tw-flex tw-min-h-[104px] tw-flex-col tw-justify-between tw-gap-3 tw-rounded-xl tw-border tw-border-border tw-p-4 tw-text-left tw-transition-colors tw-bg-secondary/20 hover:tw-border-interactive-accent hover:tw-bg-accent/10"
138138
>
139139
<div className="tw-flex tw-items-start tw-justify-between tw-gap-3">
140140
<div className="tw-flex tw-flex-col tw-gap-1">

0 commit comments

Comments
 (0)