From 788a56c5e91a35eab23454a80b06488666a862e2 Mon Sep 17 00:00:00 2001 From: Abdelaziz Bennouna Date: Wed, 22 May 2019 13:20:01 +0000 Subject: [PATCH] fix(picker): update the column positions in rtl (#18339) references #17012 --- .../picker-column/picker-column.scss | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/core/src/components/picker-column/picker-column.scss b/core/src/components/picker-column/picker-column.scss index cd55476d62..9fe984c4e4 100644 --- a/core/src/components/picker-column/picker-column.scss +++ b/core/src/components/picker-column/picker-column.scss @@ -54,23 +54,11 @@ } .picker-opts-left { - @include ltr() { - justify-content: flex-start; - } - - @include rtl() { - justify-content: flex-end; - } + justify-content: flex-start; } .picker-opts-right { - @include ltr() { - justify-content: flex-end; - } - - @include rtl() { - justify-content: flex-start; - } + justify-content: flex-end; } .picker-opt { @@ -98,4 +86,4 @@ text-align: start; white-space: nowrap; -} \ No newline at end of file +}