fix issue where a menu item with a dropdown as the last menu item did not have proper margin

This commit is contained in:
Dean Attali 2020-05-15 04:42:30 +00:00
parent 85401c9f01
commit 39c4316ee2
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
## v3.0.1 (Date: TBD)
- Fixed issue where if a dropdown menu was the last item in the menu bar, it did not have a proper margin on the right
## v3.0.0 (Date: 2020-05-07)
- **BREAKING CHANGE** Upgraded from Bootstrap 3.3.2 to 4.4.1. This involved a major rewrite of most components. This shouldn't affect any users unless you have custom HTML/CSS code which the new Bootstrap could have broken.

View File

@ -242,7 +242,8 @@ img {
padding-left: 0.9375rem;
padding-right: 0.9375rem;
}
.navbar-expand-md .navbar-nav .nav-item:last-child .nav-link {
.navbar-expand-md .navbar-nav .nav-item:not(.dropdown):last-child .nav-link {
padding-right: 0;
}
}