From a7686f61c791f405fcf6f9417c24c99f3b941674 Mon Sep 17 00:00:00 2001 From: MyPrototypeWhat Date: Thu, 20 Nov 2025 15:39:18 +0800 Subject: [PATCH] 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. --- packages/ui/src/components/primitives/pagination.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/src/components/primitives/pagination.tsx b/packages/ui/src/components/primitives/pagination.tsx index 34cb1228e5..2de5a36592 100644 --- a/packages/ui/src/components/primitives/pagination.tsx +++ b/packages/ui/src/components/primitives/pagination.tsx @@ -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 )}