diff --git a/src/components/Pagination.tsx b/src/components/Pagination.tsx
index 8b80abf3..43b26d90 100644
--- a/src/components/Pagination.tsx
+++ b/src/components/Pagination.tsx
@@ -25,7 +25,7 @@ const PaginationButton = ({
disabled={disabled}
onClick={onClick}
className={cn(
- 'join-item w-10 h-10 grid place-items-center p-2.5 rounded-lg text-sm font-semibold text-base-content/50 aspect-square',
+ 'join-item w-10 h-10 grid place-items-center p-2.5 rounded-lg! text-sm font-semibold text-base-content/50 aspect-square',
'disabled:text-primary disabled:pointer-events-auto! disabled:cursor-not-allowed! disabled:bg-primary/10 disabled:active:translate-y-0'
)}
>
@@ -52,7 +52,7 @@ const EtcPaginationButton = ({
tabIndex={0}
role='button'
className={cn(
- 'join-item btn btn-ghost p-2.5 rounded-lg text-sm font-medium text-gray-500 aspect-square'
+ 'join-item btn btn-ghost p-2.5 rounded-lg! text-sm font-medium text-gray-500 aspect-square'
)}
>
...
@@ -61,7 +61,7 @@ const EtcPaginationButton = ({
{pages.map((pageNumber) => (
-
@@ -80,7 +80,7 @@ const EtcPaginationButton = ({