Browse Source

Basket view fix

Fixed the view basket......
pull/443/head
Adrian MIHAILESCU 7 years ago
parent
commit
bf21cde535
2 changed files with 9 additions and 1 deletions
  1. +1
    -1
      src/Web/WebSPA/Client/modules/basket/basket.component.html
  2. +8
    -0
      src/Web/WebSPA/Client/modules/basket/basket.component.scss

+ 1
- 1
src/Web/WebSPA/Client/modules/basket/basket.component.html View File

@ -21,8 +21,8 @@
<section class="esh-basket-item esh-basket-item--middle col-lg-3 hidden-lg-down"> <section class="esh-basket-item esh-basket-item--middle col-lg-3 hidden-lg-down">
<img class="esh-basket-image" src="{{item.pictureUrl}}" /> <img class="esh-basket-image" src="{{item.pictureUrl}}" />
<div>{{item.productName}}</div>
</section> </section>
<section class="esh-basket-item esh-basket-item--middle col-xs-3">{{item.productName}}</section>
<section class="esh-basket-item esh-basket-item--middle col-xs-2">$ {{item.unitPrice | number:'.2-2'}}</section> <section class="esh-basket-item esh-basket-item--middle col-xs-2">$ {{item.unitPrice | number:'.2-2'}}</section>
<section class="esh-basket-item esh-basket-item--middle col-xs-2"> <section class="esh-basket-item esh-basket-item--middle col-xs-2">
<input id="quantity" class="esh-basket-input" type="number" min="1" [(ngModel)]="item.quantity" (change)="itemQuantityChanged(item)" /> <input id="quantity" class="esh-basket-input" type="number" min="1" [(ngModel)]="item.quantity" (change)="itemQuantityChanged(item)" />


+ 8
- 0
src/Web/WebSPA/Client/modules/basket/basket.component.scss View File

@ -13,10 +13,18 @@
padding-top: 0; padding-top: 0;
} }
} }
&-titles {
justify-content: space-between;
align-items: right;
}
&-title { &-title {
text-transform: uppercase; text-transform: uppercase;
justify-content: space-between;
align-items: right;
} }
&-items { &-items {
justify-content: space-between;
align-items: right;
&--border { &--border {
border-bottom: $border-light solid $color-foreground-bright; border-bottom: $border-light solid $color-foreground-bright;
padding: .5rem 0; padding: .5rem 0;


Loading…
Cancel
Save