Skip to content

Commit

Permalink
next: pagination border-t
Browse files Browse the repository at this point in the history
  • Loading branch information
tangly1024 committed Aug 1, 2023
1 parent ff2b10a commit 587ba56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions themes/next/components/PaginationNumber.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const PaginationNumber = ({ page, totalPage }) => {
<div
rel="prev"
className={`${currentPage === 1 ? 'invisible' : 'block'
} border-white dark:border-gray-700 hover:border-gray-400 dark:hover:border-gray-400 w-6 text-center cursor-pointer duration-200 hover:font-bold`}
} border-t-2 border-white dark:border-gray-700 hover:border-gray-400 dark:hover:border-gray-400 w-6 text-center cursor-pointer duration-200 hover:font-bold`}
>
<i className="fas fa-angle-left" />
</div>
Expand All @@ -55,7 +55,7 @@ const PaginationNumber = ({ page, totalPage }) => {
<div
rel="next"
className={`${+showNext ? 'block' : 'invisible'
} border-t-2 border-white dark:border-gray-700 hover:border-gray-400 dark:hover:border-gray-400 w-6 text-center cursor-pointer duration-500 hover:font-bold`}
} border-t-2 border-white dark:border-gray-700 hover:border-gray-400 dark:hover:border-gray-400 w-6 text-center cursor-pointer duration-500 hover:font-bold`}
>
<i className="fas fa-angle-right" />
</div>
Expand Down

0 comments on commit 587ba56

Please sign in to comment.