Created
May 28, 2020 03:05
-
-
Save nipunaupeksha/2fa944aba665f006cdce7714b148544e to your computer and use it in GitHub Desktop.
engtosin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container" | |
fxLayout="column" | |
fxLayoutGap="10px"> | |
<div fxFlex> | |
<div> | |
<h3><strong>FONTS</strong></h3> | |
<hr> | |
</div> | |
</div> | |
<div fxFlex> | |
<mat-grid-list cols="5" rowHeight="200px"> | |
<mat-grid-tile *ngFor="let font of fonts" (click)=onSelect(font)> | |
<img height="200px" src={{font.image}} alt={{font.name}}> | |
<mat-grid-tile-footer> | |
<h1> {{font.name | uppercase}}</h1> | |
</mat-grid-tile-footer> | |
</mat-grid-tile> | |
</mat-grid-list> | |
</div> | |
</div> | |
<app-fontdetail [font]="selectedFont"></app-fontdetail> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment