Skip to content

Commit

Permalink
Fix for horizontal list-group item
Browse files Browse the repository at this point in the history
  • Loading branch information
louismaximepiton authored and mdo committed Sep 1, 2022
1 parent a138bc3 commit ebbed79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scss/_list-group.scss
Expand Up @@ -127,12 +127,12 @@
flex-direction: row;

> .list-group-item {
&:first-child {
&:first-child:not(:last-child) {
@include border-bottom-start-radius(var(--#{$prefix}list-group-border-radius));
@include border-top-end-radius(0);
}

&:last-child {
&:last-child:not(:first-child) {
@include border-top-end-radius(var(--#{$prefix}list-group-border-radius));
@include border-bottom-start-radius(0);
}
Expand Down

0 comments on commit ebbed79

Please sign in to comment.