Commit cbf88717106d13d59e97e1e65669735e3db34269
1 parent
f1f64974c9
Exists in
master
and in
1 other branch
Arreglo en la vista.
Showing
1 changed file
with
16 additions
and
7 deletions
Show diff stats
src/app/components/sidebar/sidebar.component.html
| ... | ... | @@ -24,17 +24,23 @@ |
| 24 | 24 | |
| 25 | 25 | <!-- BOTONES --> |
| 26 | 26 | <div class="row m-0 d-flex justify-content-between"> |
| 27 | - | |
| 27 | + | |
| 28 | 28 | <!-- SUMAR - RESTAR CANTIDAD --> |
| 29 | 29 | <div class="col-auto px-1 my-2"> |
| 30 | 30 | <div class="btn-group-sm btn-group float-left my-auto" role="group"> |
| 31 | - <button type="button" class="btn btn-light btn-sm my-auto border" (click)="aumentarContador(i)"> | |
| 31 | + <button | |
| 32 | + type="button" | |
| 33 | + class="btn btn-light btn-sm my-auto border shadow" | |
| 34 | + (click)="aumentarContador(i)"> | |
| 32 | 35 | <i class="fa fa-plus" aria-hidden="true"></i> |
| 33 | 36 | </button> |
| 34 | - <div class="bg-white border border-white px-3 my-auto text-dark h5"> | |
| 37 | + <div class="bg-white border border-white px-3 my-auto text-dark h5 shadow"> | |
| 35 | 38 | <small>{{producto.cantidad}}</small> |
| 36 | 39 | </div> |
| 37 | - <button type="button" class="btn btn-light btn-sm my-auto border" (click)="decrementarContador(i)"> | |
| 40 | + <button | |
| 41 | + type="button" | |
| 42 | + class="btn btn-light btn-sm my-auto border shadow" | |
| 43 | + (click)="decrementarContador(i)"> | |
| 38 | 44 | <i class="fa fa-minus" aria-hidden="true"></i> |
| 39 | 45 | </button> |
| 40 | 46 | </div> |
| ... | ... | @@ -45,7 +51,7 @@ |
| 45 | 51 | <button |
| 46 | 52 | *ngIf="esPersonalizable(producto)" |
| 47 | 53 | type="button" |
| 48 | - class="btn btn-light btn-sm my-auto float-left border" | |
| 54 | + class="btn btn-light btn-sm my-auto float-left border shadow" | |
| 49 | 55 | (click)="personalizarPromo"> |
| 50 | 56 | <i class="fa fa-hand-o-up" aria-hidden="true"></i> |
| 51 | 57 | </button> |
| ... | ... | @@ -53,8 +59,11 @@ |
| 53 | 59 | |
| 54 | 60 | <!-- BORRAR --> |
| 55 | 61 | <div class="col-auto px-1 my-2"> |
| 56 | - <button type="button" class="btn btn-secondary btn-sm my-auto" (click)="deleteProducto(i)"> | |
| 57 | - <i class="fa fa-times" aria-hidden="true"></i> | |
| 62 | + <button | |
| 63 | + type="button" | |
| 64 | + class="btn btn-secondary btn-sm my-auto shadow" | |
| 65 | + (click)="deleteProducto(i)"> | |
| 66 | + <i class="fa fa-trash" aria-hidden="true"></i> | |
| 58 | 67 | </button> |
| 59 | 68 | </div> |
| 60 | 69 | </div> |