aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2016-12-27 14:36:55 -0800
committerMark Otto <[email protected]>2016-12-27 22:37:50 -0800
commitd2479cf5f0601e94e5729ddc4145c60e8b5208d8 (patch)
treee10dabc9a3bd5698789b0e49d58f80a3659880ef
parent5d0ec572d4d6ea15e9be4767f452e6a471ecd1fc (diff)
downloadbootstrap-d2479cf5f0601e94e5729ddc4145c60e8b5208d8.tar.xz
bootstrap-d2479cf5f0601e94e5729ddc4145c60e8b5208d8.zip
inline-flex and width: 100% for stacked/vertical variation
shoutout to @Starsam80 for the fix
-rw-r--r--scss/_button-group.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/_button-group.scss b/scss/_button-group.scss
index c2e5a6b00..1d921a74a 100644
--- a/scss/_button-group.scss
+++ b/scss/_button-group.scss
@@ -149,14 +149,14 @@
//
.btn-group-vertical {
- display: flex;
+ display: inline-flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
.btn,
.btn-group {
- flex: 0 1 auto;
+ width: 100%;
}
> .btn + .btn,