mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-18 22:36:31 +08:00
fix: Table pagination missing when position is top (#26618)
close #26617
This commit is contained in:
parent
a26517f9ab
commit
ce6d89e93a
@ -162,16 +162,18 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&-pagination {
|
&-pagination {
|
||||||
|
display: flex;
|
||||||
|
|
||||||
&-left {
|
&-left {
|
||||||
float: left;
|
justify-content: start;
|
||||||
}
|
}
|
||||||
|
|
||||||
&-center {
|
&-center {
|
||||||
text-align: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
&-right {
|
&-right {
|
||||||
float: right;
|
justify-content: end;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -53,26 +53,15 @@
|
|||||||
|
|
||||||
// ========================== Pagination ==========================
|
// ========================== Pagination ==========================
|
||||||
&-pagination {
|
&-pagination {
|
||||||
.@{table-wrapepr-cls}.@{table-wrapepr-rtl-cls} & {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
&-left {
|
&-left {
|
||||||
.@{table-wrapepr-cls}.@{table-wrapepr-rtl-cls} & {
|
.@{table-wrapepr-cls}.@{table-wrapepr-rtl-cls} & {
|
||||||
float: left;
|
justify-content: end;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&-right {
|
&-right {
|
||||||
.@{table-wrapepr-cls}.@{table-wrapepr-rtl-cls} & {
|
.@{table-wrapepr-cls}.@{table-wrapepr-rtl-cls} & {
|
||||||
float: right;
|
justify-content: start;
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&-center {
|
|
||||||
.@{table-wrapepr-cls}.@{table-wrapepr-rtl-cls} & {
|
|
||||||
float: initial;
|
|
||||||
text-align: center;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user