style: enhance PaginationLink styles with rounded corners

- Updated the PaginationLink component to include rounded corners in its hover styles, improving the overall visual appearance and user experience.
This commit is contained in:
MyPrototypeWhat 2025-11-20 15:39:18 +08:00
parent e694ae68e3
commit a7686f61c7

View File

@ -39,7 +39,7 @@ function PaginationLink({ className, isActive, size = 'icon', ...props }: Pagina
variant: isActive ? 'outline' : 'ghost',
size
}),
'text-foreground hover:text-primary hover:shadow-none hover:bg-primary/10',
'text-foreground hover:text-primary hover:shadow-none hover:bg-primary/10 rounded-3xs',
isActive && 'bg-background text-primary',
className
)}