We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61db42b commit 4f520ebCopy full SHA for 4f520eb
apps/web/core/components/editor/embeds/mentions/user.tsx
@@ -41,9 +41,12 @@ export const EditorUserMention = observer(function EditorUserMention(props: Prop
41
42
return (
43
<div
44
- className={cn("not-prose inline px-1 py-0.5 rounded-sm bg-accent-primary/20 text-accent-primary no-underline", {
45
- "bg-yellow-500/20 text-yellow-500": id === currentUser?.id,
46
- })}
+ className={cn(
+ "not-prose inline px-1 py-0.5 rounded-sm bg-accent-subtle-active text-accent-primary no-underline",
+ {
47
+ "bg-label-yellow-bg text-label-yellow-text": id === currentUser?.id,
48
+ }
49
+ )}
50
>
51
<Popover delay={100} openOnHover>
52
<Popover.Button>
0 commit comments