From d2479cf5f0601e94e5729ddc4145c60e8b5208d8 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 27 Dec 2016 14:36:55 -0800 Subject: [PATCH] inline-flex and width: 100% for stacked/vertical variation shoutout to @Starsam80 for the fix --- scss/_button-group.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scss/_button-group.scss b/scss/_button-group.scss index c2e5a6b002..1d921a74a3 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,