fix(dropdowns): RTL for `.dropdown-menu-*` (#34124)

This commit is contained in:
Gaël Poupard 2021-05-27 16:36:32 +02:00 committed by GitHub
parent 544d9ac3cf
commit 57205e3d8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -50,8 +50,8 @@
--bs-position: start;
&[data-bs-popper] {
right: auto #{"/* rtl:ignore */"};
left: 0 #{"/* rtl:ignore */"};
right: auto;
left: 0;
}
}
@ -59,8 +59,8 @@
--bs-position: end;
&[data-bs-popper] {
right: 0 #{"/* rtl:ignore */"};
left: auto #{"/* rtl:ignore */"};
right: 0;
left: auto;
}
}
}