aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Galante <[email protected]>2017-09-26 10:51:27 -0300
committerXhmikosR <[email protected]>2017-09-26 16:51:27 +0300
commit71c06b75c6130927870a8059762766c84c641f66 (patch)
tree5eab031c1f20a0a4cbee50800b0b2aa5905f1795
parent31c872191380d4cd32af379b9d24359d6a9dc34c (diff)
downloadbootstrap-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.scss12
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 {