Skip to content

Commit d1f926b

Browse files
committed
fix(dropdown): rtl caret spacing
1 parent bf61e04 commit d1f926b

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

scss/_dropdown.scss

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,17 @@
6767
}
6868
}
6969
}
70+
71+
*[dir="rtl"] {
72+
.dropdown-toggle {
73+
&::before {
74+
margin-right: 0;
75+
margin-left: $caret-spacing;
76+
}
77+
78+
&::after {
79+
margin-right: $caret-spacing;
80+
margin-left: 0;
81+
}
82+
}
83+
}

0 commit comments

Comments
 (0)