Skip to content

Instantly share code, notes, and snippets.

@nipunaupeksha
Created May 28, 2020 03:05
Show Gist options
  • Save nipunaupeksha/2fa944aba665f006cdce7714b148544e to your computer and use it in GitHub Desktop.
Save nipunaupeksha/2fa944aba665f006cdce7714b148544e to your computer and use it in GitHub Desktop.
engtosin
<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