diff options
| author | Mark Otto <[email protected]> | 2014-09-08 10:57:50 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-09-08 10:57:50 -0700 |
| commit | c6d7d71549388b071163a36f3cf05cb201c9230c (patch) | |
| tree | 5452672a3e01b4aa590a40e0a60e6f09eb1c4069 /less | |
| parent | 55787332389208d21cae92e223cba63f18e448d2 (diff) | |
| download | bootstrap-c6d7d71549388b071163a36f3cf05cb201c9230c.tar.xz bootstrap-c6d7d71549388b071163a36f3cf05cb201c9230c.zip | |
Fixes #14557: Reset the bottom margin on .form-group:last-child in .navbar-form to prevent extra spacing
Diffstat (limited to 'less')
| -rw-r--r-- | less/navbar.less | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/less/navbar.less b/less/navbar.less index c7bdd36cc..8e82888a9 100644 --- a/less/navbar.less +++ b/less/navbar.less @@ -299,6 +299,10 @@ .form-group { @media (max-width: @grid-float-breakpoint-max) { margin-bottom: 5px; + + &:last-child { + margin-bottom: 0; + } } } |
