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; display: flex;
&-left { &-left {
justify-content: start; justify-content: flex-start;
} }
&-center { &-center {
@ -173,7 +173,7 @@
} }
&-right { &-right {
justify-content: end; justify-content: flex-end;
} }
} }

View File

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