fix(Pagination): Replace `disabled` with `pe-none` to optimise style.

This commit is contained in:
haitaoo 2023-07-24 11:08:32 +08:00
parent 90d646613b
commit 789f566869
1 changed files with 2 additions and 2 deletions

View File

@ -134,7 +134,7 @@ const Index: FC<Props> = ({
path={handleParams(1)}
/>
<Pagination.Ellipsis disabled />
<Pagination.Ellipsis className="pe-none" />
</>
)}
{currentPage >= 5 && (
@ -182,7 +182,7 @@ const Index: FC<Props> = ({
);
})}
{totalPage > 5 && realPage + 2 < totalPage && (
<Pagination.Ellipsis disabled />
<Pagination.Ellipsis className="pe-none" />
)}
{totalPage > 0 && currentPage < totalPage && (