Skip to content

Commit

Permalink
fix(chat): adjust buttons hover color on prompt preview modal (Issue #…
Browse files Browse the repository at this point in the history
…1327) (#1387)

Co-authored-by: Mikhail Hahalushka <[email protected]>
  • Loading branch information
likeamike and Mikhail Hahalushka authored May 16, 2024
1 parent 206fa34 commit 2807715
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export const PreviewPromptModal = ({
}),
);
}}
className="flex cursor-pointer items-center justify-center rounded p-[5px] hover:bg-accent-tertiary-alpha hover:text-accent-tertiary"
className="flex cursor-pointer items-center justify-center rounded p-[5px] hover:bg-accent-primary-alpha hover:text-accent-primary"
>
<IconFileArrowRight size={24} strokeWidth="1.5" />
</button>
Expand All @@ -102,7 +102,7 @@ export const PreviewPromptModal = ({
>
<button
onClick={onDelete}
className="flex cursor-pointer items-center justify-center rounded p-[5px] hover:bg-accent-tertiary-alpha hover:text-accent-tertiary"
className="flex cursor-pointer items-center justify-center rounded p-[5px] hover:bg-accent-primary-alpha hover:text-accent-primary"
>
<IconTrashX size={24} strokeWidth="1.5" />
</button>
Expand Down

0 comments on commit 2807715

Please sign in to comment.