diff options
| author | Gijs Boddeus <[email protected]> | 2017-10-22 21:17:22 +0200 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-10-22 12:17:22 -0700 |
| commit | 25649311653a50f72d4db6af0a2270f3c6da6813 (patch) | |
| tree | 2849aab9790bc311f8539faa131486429e8efae9 | |
| parent | 3b75ebff2b95d36974d7d9eace938800e6ffecaa (diff) | |
| download | bootstrap-25649311653a50f72d4db6af0a2270f3c6da6813.tar.xz bootstrap-25649311653a50f72d4db6af0a2270f3c6da6813.zip | |
fix vertical input button group margin (#24498)
* add margin-bottom to .btn of a vertical button group
* match margins of radio/checkbox buttons in a btn-group to the actual buttons
* add comment
| -rw-r--r-- | scss/_button-group.scss | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scss/_button-group.scss b/scss/_button-group.scss index 4dcd9aa67..713a07d52 100644 --- a/scss/_button-group.scss +++ b/scss/_button-group.scss @@ -197,6 +197,8 @@ [data-toggle="buttons"] { > .btn, > .btn-group > .btn { + margin-bottom: 0; // Override default `<label>` value + input[type="radio"], input[type="checkbox"] { position: absolute; |
