pedidos-salientes.component.html 1.31 KB
<div class="row mt-2 justify-content-center h-15">
  <div class="col-3 col-lg-2">
    <img
      draggable="false"
      ondragstart="return false;"
      (contextmenu)="false"
      class="w-60 h-auto d-block mx-auto"
      src="assets/img/logo-spot.svg">
  </div>
</div>
<div class="row mt-n5 mx-0 justify-content-around h-75">
  <div class="col-5 col-md-6 col-lg-4 h-100">
    <div class="p-3 bg-white text-center shadow-lg rounded h-100">
      <h5 class="pt-3">ESTAMOS</h5>
      <h3 class="font-weight-bold text-secondary">preparando</h3>
      <h5>TU PEDIDO</h5>
      <div
        *ngFor="let pedido of pedidosPendientes; let i = index"
        [hidden]="i > 3"
        class="font-weight-bold  mb-2 text-muted">
        <h1 class="display-4">{{rellenar(pedido.id.toString(), 4)}}</h1>
      </div>
    </div>
  </div>
  <div class="col-5 col-md-6 col-lg-4 h-100">
    <div class="p-3 bg-white shadow-lg rounded text-center h-100">
      <h5 class="pt-3">LISTO PARA</h5>
      <h3 class="font-weight-bold text-primary">retirar</h3>
      <div *ngIf="pedidoFinalizado.length">
        <h1 class="display-1 mt-4 text-primary mb-0">{{rellenar(pedidoFinalizado[0].id.toString(), 4)}}</h1>
        <hr class="line mt-0">
      </div>
      <h3 class="font-weight-bold text-info mt-4">¡Que lo disfrutes!</h3>
    </div>
  </div>
</div>