Update EmojiToolbarButton.tsx

This commit is contained in:
Nate Kelley 2025-07-28 16:52:04 -06:00
parent 93cb03d216
commit 4c9c0adaf9
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
1 changed files with 3 additions and 3 deletions

View File

@ -464,7 +464,7 @@ function EmojiPickerNavigation({
size="small"
variant="ghost"
className={cn(
'text-muted-foreground hover:bg-muted hover:text-muted-foreground h-fit rounded-full fill-current p-1.5',
'text-muted-foreground hover:bg-muted hover:text-muted-foreground h-fit !max-h-fit rounded-full fill-current p-1.5',
id === focusedCategory &&
'bg-accent text-accent-foreground pointer-events-none fill-current'
)}
@ -473,9 +473,9 @@ function EmojiPickerNavigation({
}}
aria-label={i18n.categories[id]}
type="button">
<span className="inline-flex size-5 items-center justify-center">
<div className="inline-flex size-5 min-h-5 items-center justify-center text-lg">
{icons.categories[id].outline}
</span>
</div>
</Button>
</TooltipTrigger>
<TooltipContent side="bottom">{i18n.categories[id]}</TooltipContent>