fix(picker): update the column positions in rtl (#18339)

references #17012
This commit is contained in:
Abdelaziz Bennouna
2019-05-22 13:20:01 +00:00
committed by Brandy Carney
parent 17345efb14
commit 788a56c5e9

View File

@ -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;
}
}