Browse Source

add border to items

pull/49/merge
Quique Fernandez 8 years ago
parent
commit
3b16254c6d
2 changed files with 5 additions and 2 deletions
  1. +1
    -1
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/orders/orders-detail/orders-detail.component.html
  2. +4
    -1
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/orders/orders-detail/orders-detail.component.scss

+ 1
- 1
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/orders/orders-detail/orders-detail.component.html 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}}">


+ 4
- 1
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/orders/orders-detail/orders-detail.component.scss View File

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


Loading…
Cancel
Save