From 26f73797cf119e19e766a0340736b56f26da3e8f Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Tue, 17 Jul 2018 14:13:15 -0500 Subject: [PATCH] fix(list): hide the last item border when there are no lines (#14770) fixes #14769 --- core/src/components/list/list.ios.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/components/list/list.ios.scss b/core/src/components/list/list.ios.scss index e731bf5f51..66cd74818d 100644 --- a/core/src/components/list/list.ios.scss +++ b/core/src/components/list/list.ios.scss @@ -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}; }