fix(table-pagination): make pagination.position work (#26678)

This commit is contained in:
Dave 2020-09-11 16:49:15 +08:00 committed by GitHub
parent 4270fc7e12
commit 5507641331
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -165,7 +165,7 @@
display: flex;
&-left {
justify-content: start;
justify-content: flex-start;
}
&-center {
@ -173,7 +173,7 @@
}
&-right {
justify-content: end;
justify-content: flex-end;
}
}

View File

@ -55,13 +55,13 @@
&-pagination {
&-left {
.@{table-wrapepr-cls}.@{table-wrapepr-rtl-cls} & {
justify-content: end;
justify-content: flex-end;
}
}
&-right {
.@{table-wrapepr-cls}.@{table-wrapepr-rtl-cls} & {
justify-content: start;
justify-content: flex-start;
}
}
}