Skip to content

Commit a647af0

Browse files
committed
Picker: fix RTL mode two columns
Fixes #2416
1 parent 4e957ed commit a647af0

1 file changed

Lines changed: 12 additions & 2 deletions

File tree

src/core/components/picker/picker.less

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,20 @@
3535
top: 0;
3636
}
3737
&.picker-column-first:before {
38-
right: 100%;
38+
.ltr({
39+
right: 100%;
40+
});
41+
.rtl({
42+
left: 100%;
43+
});
3944
}
4045
&.picker-column-last:after {
41-
left: 100%;
46+
.ltr({
47+
left: 100%;
48+
});
49+
.rtl({
50+
right: 100%;
51+
});
4252
}
4353
&.picker-column-left {
4454
text-align: left;

0 commit comments

Comments
 (0)