diff options
| author | Mark Otto <[email protected]> | 2016-10-02 18:22:53 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2016-10-02 18:22:53 -0700 |
| commit | ebc77f60bb3c8dc11417f7cdb8648a65f1fe24cd (patch) | |
| tree | eb4b2ecd7b88f13d9be72b997e9cb49c005807b1 | |
| parent | 7bf868a709d5e278048f7fe5fd62d2fa9365d5bc (diff) | |
| download | bootstrap-ebc77f60bb3c8dc11417f7cdb8648a65f1fe24cd.tar.xz bootstrap-ebc77f60bb3c8dc11417f7cdb8648a65f1fe24cd.zip | |
Remove the margin-bottom from <label>s in .btn-groups (#20827)
- Fixes #20298 for vertical button group spacing
- Fixes #20784 for horizontal (default) button group spacing
- Alternate fix to #20823 which only applied a fix for vertical button groups
| -rw-r--r-- | scss/_button-group.scss | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scss/_button-group.scss b/scss/_button-group.scss index 60e9f7a74..0e63ecc54 100644 --- a/scss/_button-group.scss +++ b/scss/_button-group.scss @@ -10,6 +10,7 @@ > .btn { position: relative; float: left; + margin-bottom: 0; // Bring the "active" button to the front &:focus, |
