Skip to content

Commit

Permalink
fix(dropdowns): RTL for .dropdown-menu-* (#34124)
Browse files Browse the repository at this point in the history
  • Loading branch information
ffoodd authored May 27, 2021
1 parent 544d9ac commit 57205e3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scss/_dropdown.scss
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,17 @@
--bs-position: start;

&[data-bs-popper] {
right: auto #{"/* rtl:ignore */"};
left: 0 #{"/* rtl:ignore */"};
right: auto;
left: 0;
}
}

.dropdown-menu#{$infix}-end {
--bs-position: end;

&[data-bs-popper] {
right: 0 #{"/* rtl:ignore */"};
left: auto #{"/* rtl:ignore */"};
right: 0;
left: auto;
}
}
}
Expand Down

0 comments on commit 57205e3

Please sign in to comment.