showTotal
is currently aligned to the left of the pagination ( list of numbers ) always.
How to change its position.
Refer to the image below to understand the expected behavior
Documentation for Reference: https://ant.design/components/pagination/
CodePudding user response:
Altough it is a li
inside a ul
, you can trick it somehow using absolute position
.ant-pagination-total-text {
position: absolute;
right: 0;
}