Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions apps/web/core/components/editor/embeds/mentions/user.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,12 @@ export const EditorUserMention = observer(function EditorUserMention(props: Prop

return (
<div
className={cn("not-prose inline px-1 py-0.5 rounded-sm bg-accent-primary/20 text-accent-primary no-underline", {
"bg-yellow-500/20 text-yellow-500": id === currentUser?.id,
})}
className={cn(
"not-prose inline px-1 py-0.5 rounded-sm bg-accent-subtle-active text-accent-primary no-underline",
{
"bg-label-yellow-bg text-label-yellow-text": id === currentUser?.id,
}
)}
>
<Popover delay={100} openOnHover>
<Popover.Button>
Expand Down
Loading