add border to items

This commit is contained in:
Quique Fernandez 2016-12-28 14:45:00 +01:00
parent 86b9b0893f
commit 3b16254c6d
2 changed files with 5 additions and 2 deletions

View File

@ -45,7 +45,7 @@
<section class="esh-orders_detail-title col-xs-12">Order details</section>
</article>
<article class="esh-orders_detail-items row"
<article class="esh-orders_detail-items esh-orders_detail-items--border row"
*ngFor="let item of order.orderitems">
<section class="esh-orders_detail-item col-md-4 hidden-md-down">
<img class="esh-orders_detail-image" src="{{item.pictureurl}}">

View File

@ -40,7 +40,10 @@
}
&-items {
&--border {
border-bottom: $border-light solid $color-foreground-bright;
padding: .5rem 0;
}
}
$item-height: 8rem;