diff --git a/components/figlet/FontSelector.tsx b/components/figlet/FontSelector.tsx index 604de0f..52c1623 100644 --- a/components/figlet/FontSelector.tsx +++ b/components/figlet/FontSelector.tsx @@ -128,31 +128,31 @@ export function FontSelector({ setFilter('all')} className={cn( - 'flex-1 px-3 py-1.5 text-xs font-medium rounded-md transition-colors', + 'flex-1 flex items-center justify-center px-3 py-1.5 text-xs font-medium rounded-md transition-colors', filter === 'all' ? 'bg-background shadow-sm' : 'hover:bg-background/50' )} > - + All setFilter('favorites')} className={cn( - 'flex-1 px-3 py-1.5 text-xs font-medium rounded-md transition-colors', + 'flex-1 flex items-center justify-center px-3 py-1.5 text-xs font-medium rounded-md transition-colors', filter === 'favorites' ? 'bg-background shadow-sm' : 'hover:bg-background/50' )} > - + Favorites setFilter('recent')} className={cn( - 'flex-1 px-3 py-1.5 text-xs font-medium rounded-md transition-colors', + 'flex-1 flex items-center justify-center px-3 py-1.5 text-xs font-medium rounded-md transition-colors', filter === 'recent' ? 'bg-background shadow-sm' : 'hover:bg-background/50' )} > - + Recent