antd分页组件中如何修改showTotal postiton

How to change showTotal postiton in antd pagination component

showTotal 当前始终与分页(数字列表)左侧对齐。

如何改变它的位置。

请参阅下图以了解预期行为

参考文档:https://ant.design/components/pagination/

尽管它是 ul 中的 li,但您可以使用绝对位置

以某种方式欺骗它
.ant-pagination-total-text { 
  position: absolute;
  right: 0;
}

Example