Guest User

Untitled

a guest
Nov 24th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <div fxLayout="row">
  2. <div layout="column">
  3. <div fxFlex="100" fxFlexOffset="1" fxLayoutWrap fxLayoutGap="2rem" class="mat-elevation-z0" *ngIf="postcards != null">
  4. <mat-card *ngFor="let postcard of postcards let index = index" >
  5. <img mat-card-image src="{{postcard.img}}" alt="{{postcard.postcard_id}}" class="postcards" (click)="display_postcard(index)">
  6. </mat-card>
  7. </div>
  8. </div>
  9. </div>
  10.  
  11. .postcards {
  12. max-width: 320px;
  13. }
Add Comment
Please, Sign In to add comment