refactor(styles): update component backgrounds and hover effects for improved visual consistency across user interface elements

This commit is contained in:
Anish Sarkar 2026-05-03 22:35:40 +05:30
parent cdce6a8f14
commit 761f5b1c11
5 changed files with 12 additions and 7 deletions

View file

@ -49,7 +49,7 @@ const UserAvatar: FC<AuthorMetadata> = ({ displayName, avatarUrl }) => {
}
return (
<div className="flex size-8 items-center justify-center rounded-full bg-primary/10 text-xs font-medium text-primary select-none">
<div className="flex size-8 items-center justify-center rounded-full bg-muted text-xs font-medium text-foreground select-none">
{initials}
</div>
);