mirror of https://gitee.com/answerdev/answer.git
fix(Pagination): Replace `disabled` with `pe-none` to optimise style.
This commit is contained in:
parent
90d646613b
commit
789f566869
|
@ -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 && (
|
||||
|
|
Loading…
Reference in New Issue