@@ -97,7 +97,7 @@ export function Pagination({
9797 disabled = { currentPage === 1 }
9898 className = { cn (
9999 'px-2 py-2 text-sm font-medium rounded-lg transition-colors sm:px-3' ,
100- 'border border-gray-300 dark:border-gray-700' ,
100+ 'border border-gray-300 bg-white/90 dark:border-gray-700 dark:bg-neutral-900/80 ' ,
101101 currentPage === 1
102102 ? 'text-gray-400 dark:text-gray-600 cursor-not-allowed'
103103 : 'text-gray-700 dark:text-gray-300 hover:bg-[var(--qa-accent-soft)]'
@@ -122,7 +122,7 @@ export function Pagination({
122122 onClick = { ( ) => onPageChange ( page ) }
123123 disabled = { page === currentPage }
124124 className = { cn (
125- 'min-w-[40px] px-3 py-2 text-sm font-medium rounded-lg transition-colors border border-transparent overflow-hidden' ,
125+ 'min-w-[40px] px-3 py-2 text-sm font-medium rounded-lg transition-colors border border-transparent overflow-hidden bg-white/90 dark:bg-neutral-900/80 ' ,
126126 page === currentPage
127127 ? 'shadow-sm text-gray-700 dark:text-gray-300'
128128 : 'text-gray-700 dark:text-gray-300 hover:bg-[var(--qa-accent-soft)]'
@@ -150,7 +150,7 @@ export function Pagination({
150150 disabled = { currentPage === totalPages }
151151 className = { cn (
152152 'px-2 py-2 text-sm font-medium rounded-lg transition-colors sm:px-3' ,
153- 'border border-gray-300 dark:border-gray-700' ,
153+ 'border border-gray-300 bg-white/90 dark:border-gray-700 dark:bg-neutral-900/80 ' ,
154154 currentPage === totalPages
155155 ? 'text-gray-400 dark:text-gray-600 cursor-not-allowed'
156156 : 'text-gray-700 dark:text-gray-300 hover:bg-[var(--qa-accent-soft)]'
0 commit comments