Skip to content

Commit

Permalink
chore: picker: ensure dropdown scss module is rtl
Browse files Browse the repository at this point in the history
  • Loading branch information
dkilgore-eightfold committed Sep 23, 2022
1 parent 41e77b7 commit 55aef43
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions src/components/DateTimePicker/Internal/ocpicker.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1237,17 +1237,19 @@
}

.picker-dropdown {
.picker-range-arrow {
right: $picker-arrow-size;
left: unset;
margin-right: 10px;
margin-left: 0;

&:before,
&:after {
right: 50%;
left: auto;
transform: translate(50%, -50%);
&-rtl {
.picker-range-arrow {
right: $picker-arrow-size;
left: unset;
margin-right: 10px;
margin-left: 0;

&:before,
&:after {
right: 50%;
left: auto;
transform: translate(50%, -50%);
}
}
}
}
Expand Down

0 comments on commit 55aef43

Please sign in to comment.