Fixes rounded corners on first and lat child on vertical btn group (#24119)

This commit is contained in:
Andres Galante 2017-09-26 10:51:27 -03:00 committed by XhmikosR
parent 31c8721913
commit 71c06b75c6

View File

@ -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 {