fix(list): hide the last item border when there are no lines (#14770)

fixes #14769
This commit is contained in:
Nathan Walker
2018-07-17 14:13:15 -05:00
committed by Brandy Carney
parent 8c409eed85
commit 26f73797cf

View File

@ -8,7 +8,7 @@
@include margin(-1px, $list-ios-margin-end, $list-ios-margin-bottom, $list-ios-margin-start);
}
.list-ios:not(.list-inset) .item:last-child {
.list-ios:not(.list-inset):not(.list-ios-lines-none) .item:last-child {
--inner-border-width: 0;
--border-width: #{0 0 $list-ios-item-border-bottom-width 0};
}