mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-18 14:13:37 +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 {
|
||||
display: flex;
|
||||
|
||||
&-left {
|
||||
float: left;
|
||||
justify-content: start;
|
||||
}
|
||||
|
||||
&-center {
|
||||
text-align: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
&-right {
|
||||
float: right;
|
||||
justify-content: end;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -53,26 +53,15 @@
|
||||
|
||||
// ========================== Pagination ==========================
|
||||
&-pagination {
|
||||
.@{table-wrapepr-cls}.@{table-wrapepr-rtl-cls} & {
|
||||
float: left;
|
||||
}
|
||||
|
||||
&-left {
|
||||
.@{table-wrapepr-cls}.@{table-wrapepr-rtl-cls} & {
|
||||
float: left;
|
||||
justify-content: end;
|
||||
}
|
||||
}
|
||||
|
||||
&-right {
|
||||
.@{table-wrapepr-cls}.@{table-wrapepr-rtl-cls} & {
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
|
||||
&-center {
|
||||
.@{table-wrapepr-cls}.@{table-wrapepr-rtl-cls} & {
|
||||
float: initial;
|
||||
text-align: center;
|
||||
justify-content: start;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user