aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2017-01-03 19:22:08 -0800
committerMark Otto <[email protected]>2017-01-03 19:22:08 -0800
commit1ed9f5db2970e7c27d92b12844f4b89b4add4fc5 (patch)
tree1c26feb61c2c4cdb994d2609b4823e4de4680c28
parent56f917dd8c1f97048f0982570c6ed9b4cacf8752 (diff)
downloadbootstrap-1ed9f5db2970e7c27d92b12844f4b89b4add4fc5.tar.xz
bootstrap-1ed9f5db2970e7c27d92b12844f4b89b4add4fc5.zip
button groups should be inline-flex to match their button counter parts (inline-block currently)
-rw-r--r--scss/_button-group.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_button-group.scss b/scss/_button-group.scss
index 1d921a74a..af3c48669 100644
--- a/scss/_button-group.scss
+++ b/scss/_button-group.scss
@@ -4,7 +4,7 @@
.btn-group,
.btn-group-vertical {
position: relative;
- display: flex;
+ display: inline-flex;
vertical-align: middle; // match .btn alignment given font-size hack above
> .btn {