From 5507641331b5db5684ca6e959f8fbdbedf9f62f6 Mon Sep 17 00:00:00 2001 From: Dave Date: Fri, 11 Sep 2020 16:49:15 +0800 Subject: [PATCH] fix(table-pagination): make pagination.position work (#26678) --- components/table/style/index.less | 4 ++-- components/table/style/rtl.less | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/components/table/style/index.less b/components/table/style/index.less index cf717f02a8..85ddc135b2 100644 --- a/components/table/style/index.less +++ b/components/table/style/index.less @@ -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; } } diff --git a/components/table/style/rtl.less b/components/table/style/rtl.less index 5e2f7660e0..c8aa6c0448 100644 --- a/components/table/style/rtl.less +++ b/components/table/style/rtl.less @@ -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; } } }