diff options
| author | Andres Galante <[email protected]> | 2017-09-26 10:51:27 -0300 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2017-09-26 16:51:27 +0300 |
| commit | 71c06b75c6130927870a8059762766c84c641f66 (patch) | |
| tree | 5eab031c1f20a0a4cbee50800b0b2aa5905f1795 | |
| parent | 31c872191380d4cd32af379b9d24359d6a9dc34c (diff) | |
| download | bootstrap-71c06b75c6130927870a8059762766c84c641f66.tar.xz bootstrap-71c06b75c6130927870a8059762766c84c641f66.zip | |
Fixes rounded corners on first and lat child on vertical btn group (#24119)
| -rw-r--r-- | scss/_button-group.scss | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scss/_button-group.scss b/scss/_button-group.scss index 406350682..189036bd3 100644 --- a/scss/_button-group.scss +++ b/scss/_button-group.scss @@ -152,14 +152,14 @@ &:not(:first-child):not(:last-child) { border-radius: 0; } - } - &:first-child:not(:last-child) { - @include border-bottom-radius(0); - } + &:first-child:not(:last-child) { + @include border-bottom-radius(0); + } - &:last-child:not(:first-child) { - @include border-top-radius(0); + &:last-child:not(:first-child) { + @include border-top-radius(0); + } } > .btn-group:not(:first-child):not(:last-child) > .btn { |
