Styled store categories
This commit is contained in:
parent
70c7f1133c
commit
177a671c69
@ -1,13 +1,15 @@
|
|||||||
<div class="container">
|
<div class="container-fluid" style="background-color: #53709f;">
|
||||||
|
<div class="container">
|
||||||
<div class="row py-5">
|
<div class="row py-5">
|
||||||
<ng-container *ngFor="let c of categories | async">
|
<ng-container *ngFor="let c of categories | async">
|
||||||
<mat-card *ngIf="c.ready">
|
<mat-card *ngIf="c.ready" class="m-3">
|
||||||
<img mat-card-image [src]="c.image | async" [alt]="c.name">
|
<img mat-card-image [src]="c.image | async" [alt]="c.name" style="width: 200px; height: 200px;">
|
||||||
<mat-divider class="custom-line"></mat-divider>
|
<mat-divider class="custom-line"></mat-divider>
|
||||||
<mat-card-content>
|
<mat-card-content>
|
||||||
<h3>{{c.name}}</h3>
|
<h5>{{c.name}}</h5>
|
||||||
</mat-card-content>
|
</mat-card-content>
|
||||||
</mat-card>
|
</mat-card>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
Loading…
Reference in New Issue
Block a user