Refine reaction badge styling: increase spacing and remove bold

- Increase gap between reaction badges from gap-1 to gap-2
- Remove font-semibold from highlighted reaction counts
- Keep text-highlight color for active user's reactions
- Results in more subtle, polished appearance
This commit is contained in:
Claude
2026-01-15 18:19:34 +00:00
parent 1d223d5cfc
commit 757af58559

View File

@@ -136,7 +136,7 @@ export function MessageReactions({ messageId, relays }: MessageReactionsProps) {
if (aggregated.length === 0) return null;
return (
<div className="inline-flex gap-1 max-w-full overflow-x-auto hide-scrollbar">
<div className="inline-flex gap-2 max-w-full overflow-x-auto hide-scrollbar">
{aggregated.map((reaction) => (
<ReactionBadge
key={reaction.customEmoji?.shortcode || reaction.emoji}
@@ -187,9 +187,7 @@ function ReactionBadge({ reaction }: { reaction: ReactionSummary }) {
)}
<span
className={cn(
hasUserReacted
? "text-highlight font-semibold"
: "text-muted-foreground",
hasUserReacted ? "text-highlight" : "text-muted-foreground",
)}
>
{reaction.count}