From 71c06b75c6130927870a8059762766c84c641f66 Mon Sep 17 00:00:00 2001
From: Andres Galante <agalante@gmail.com>
Date: Tue, 26 Sep 2017 10:51:27 -0300
Subject: [PATCH] Fixes rounded corners on first and lat child on vertical btn
 group (#24119)

---
 scss/_button-group.scss | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/scss/_button-group.scss b/scss/_button-group.scss
index 4063506825..189036bd30 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 {
-- 
GitLab