Commit 09bbac881eb5d021e30c4eadbe0b0149ae06c34b
1 parent
4e03444ae0
Exists in
master
and in
2 other branches
Fix en margenes
Showing
2 changed files
with
5 additions
and
2 deletions
Show diff stats
src/app/modules/info-formas-pago/info-formas-pago.component.html
| 1 | <div class="h-92 bg-white fade-in-left"> | 1 | <div class="h-92 bg-white fade-in-left"> |
| 2 | <div class="row mx-0 h-15"> | 2 | <div class="row mx-0 h-15"> |
| 3 | <div class="col-12 px-0 h-80 my-auto"> | 3 | <div class="col-12 px-0 h-80 my-auto"> |
| 4 | <img | 4 | <img |
| 5 | draggable="false" | 5 | draggable="false" |
| 6 | ondragstart="return false;" | 6 | ondragstart="return false;" |
| 7 | (contextmenu)="false" | 7 | (contextmenu)="false" |
| 8 | class="d-block mx-auto h-100" | 8 | class="d-block mx-auto h-100" |
| 9 | src="assets/img/logo-spot.svg"> | 9 | src="assets/img/logo-spot.svg"> |
| 10 | </div> | 10 | </div> |
| 11 | </div> | 11 | </div> |
| 12 | <div class="h-85"> | 12 | <div class="h-85"> |
| 13 | <div class="row h-50 mx-0 justify-content-center text-center"> | 13 | <div class="row h-auto mt-6 mx-0 justify-content-center text-center"> |
| 14 | <div class="col-7 pt-5 pb-3 h-auto align-self-end border border-secondary rounded"> | 14 | <div class="col-7 pt-5 pb-3 h-auto align-self-end border border-secondary rounded"> |
| 15 | <img | 15 | <img |
| 16 | draggable="false" | 16 | draggable="false" |
| 17 | ondragstart="return false;" | 17 | ondragstart="return false;" |
| 18 | (contextmenu)="false" | 18 | (contextmenu)="false" |
| 19 | class="img-in-top px-4 bg-white" | 19 | class="img-in-top px-4 bg-white" |
| 20 | src="assets/img/icono-tarjetas.svg"> | 20 | src="assets/img/icono-tarjetas.svg"> |
| 21 | <p class="h6 m-0">ESTA TERMINAL OPERA CON</p> | 21 | <p class="h6 m-0">ESTA TERMINAL OPERA CON</p> |
| 22 | <p class="h2 mb-3 text-secondary"> | 22 | <p class="h2 mb-3 text-secondary"> |
| 23 | tarjetas y | 23 | tarjetas y |
| 24 | <img | 24 | <img |
| 25 | draggable="false" | 25 | draggable="false" |
| 26 | ondragstart="return false;" | 26 | ondragstart="return false;" |
| 27 | (contextmenu)="false" | 27 | (contextmenu)="false" |
| 28 | class="w-15" | 28 | class="w-15" |
| 29 | src="assets/img/icono-mercado-pago.svg"> | 29 | src="assets/img/icono-mercado-pago.svg"> |
| 30 | </p> | 30 | </p> |
| 31 | <div | 31 | <div |
| 32 | class="d-inline-block py-1 btn-effect bg-secondary badge-pill text-white" | 32 | class="d-inline-block py-1 btn-effect bg-secondary badge-pill text-white" |
| 33 | [routerLink]="['/opcion-pedido']"> | 33 | [routerLink]="['/opcion-pedido']"> |
| 34 | CONTINUAR | 34 | CONTINUAR |
| 35 | <img | 35 | <img |
| 36 | draggable="false" | 36 | draggable="false" |
| 37 | ondragstart="return false;" | 37 | ondragstart="return false;" |
| 38 | (contextmenu)="false" | 38 | (contextmenu)="false" |
| 39 | class="icon-30" | 39 | class="icon-30" |
| 40 | src="assets/img/ir.svg"> | 40 | src="assets/img/ir.svg"> |
| 41 | </div> | 41 | </div> |
| 42 | </div> | 42 | </div> |
| 43 | </div> | 43 | </div> |
| 44 | <div class="row h-50 mx-0 justify-content-center text-center"> | 44 | <div class="row h-auto mt-6 mx-0 justify-content-center text-center"> |
| 45 | <div class="col-7 p-5 h-auto align-self-center border border-primary rounded"> | 45 | <div class="col-7 p-5 h-auto align-self-center border border-primary rounded"> |
| 46 | <img | 46 | <img |
| 47 | draggable="false" | 47 | draggable="false" |
| 48 | ondragstart="return false;" | 48 | ondragstart="return false;" |
| 49 | (contextmenu)="false" | 49 | (contextmenu)="false" |
| 50 | class="img-in-top px-4 bg-white" | 50 | class="img-in-top px-4 bg-white" |
| 51 | src="assets/img/icono-efectivo.svg"> | 51 | src="assets/img/icono-efectivo.svg"> |
| 52 | <p class="h6 m-0">SI PREFERIS PAGAR EN EFECTIVO</p> | 52 | <p class="h6 m-0">SI PREFERIS PAGAR EN EFECTIVO</p> |
| 53 | <p class="h2 m-0 text-primary">te esperamos en la caja</p> | 53 | <p class="h2 m-0 text-primary">te esperamos en la caja</p> |
| 54 | </div> | 54 | </div> |
| 55 | </div> | 55 | </div> |
| 56 | </div> | 56 | </div> |
| 57 | </div> | 57 | </div> |
| 58 | 58 |
src/app/modules/info-formas-pago/info-formas-pago.component.scss
| 1 | .mt-6 { | ||
| 2 | margin-top: 4.5rem; | ||
| 3 | } | ||
| 4 |