dropdown-menu-end in RTL
Created by: ferhado
In RTL .dropdown-menu-end has wrong position
.dropdown-menu-end {
right: 0;
left: auto;
}
It should be
.dropdown-menu-end {
right: auto;
left: 0;
}
Created by: ferhado
In RTL .dropdown-menu-end has wrong position
.dropdown-menu-end {
right: 0;
left: auto;
}
It should be
.dropdown-menu-end {
right: auto;
left: 0;
}