Skip to content

Commit

Permalink
fix(item): remove border for the last item in an item-group
Browse files Browse the repository at this point in the history
fixes #6518
  • Loading branch information
brandyscarney committed May 20, 2016
1 parent 51ee8b7 commit 6b3e7ac
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/components/item/item.md.scss
Expand Up @@ -154,6 +154,23 @@ ion-note {
}


// Material Design Item Group
// --------------------------------------------------

ion-item-group {
.item:first-child {
.item-inner {
border-top-width: 0;
}
}

.item:last-child .item-inner,
ion-item-sliding:last-child .item-inner {
border: 0;
}
}


// Material Design Item Divider
// --------------------------------------------------

Expand Down

0 comments on commit 6b3e7ac

Please sign in to comment.