From f2d7b8237dfed3eee7d4b82014930f0e95f9ae4b Mon Sep 17 00:00:00 2001 From: Marcelo Puebla Date: Wed, 4 Mar 2020 12:19:24 -0300 Subject: [PATCH] Fix Tabulacion --- .../filtro-categorias.component.html | 106 ++++++++++----------- 1 file changed, 53 insertions(+), 53 deletions(-) diff --git a/src/app/modules/seleccion-articulos/filtro-categorias/filtro-categorias.component.html b/src/app/modules/seleccion-articulos/filtro-categorias/filtro-categorias.component.html index 8317f5f..565aec1 100644 --- a/src/app/modules/seleccion-articulos/filtro-categorias/filtro-categorias.component.html +++ b/src/app/modules/seleccion-articulos/filtro-categorias/filtro-categorias.component.html @@ -1,66 +1,66 @@ -

CATEGORÍAS

-
-
+

CATEGORÍAS

+
+
+ +
+ +
+
+ class="img-fluid align-self-end d-none d-sm-block rounded-circle h-100 h-md-70" + src="assets/img/logo-spot.svg"> + Todos
-
-
- - Todos -
-
- - {{categoria.detalle}} -
-
-
+ class="row mx-2 mb-2 h-25 h-lg-30 justify-content-center tab cat-content" + [ngClass]="{ + 'active rounded shadow px-2': categoria.selected, + 'border-bottom-effect': !categoria.selected, + 'media-pantalla': templateCategorias.classList.contains('media-pantalla') + }" + (click)="selectCategoria(i, categoria.id)" + id="cat-content" + *ngFor="let categoria of categorias; let i = index;" + [hidden]="categoria.articulos <= 0 + || validarFecha(categoria.vigencia_desde, categoria.vigencia_hasta)"> + class="d-none d-sm-block rounded-circle w-auto h-100 h-md-70" + src="{{urlImagenes}}{{categoria.path_imagen}}" + onerror="this.src='assets/img/imagen-no-encontrada.jpg'"> + {{categoria.detalle}}
+
+ +
+
-- 1.9.1