Skip to content

Instantly share code, notes, and snippets.

@runtimeZero
Created August 31, 2017 15:28
Show Gist options
  • Save runtimeZero/6790b1c272c4df39e162db60fa9dc350 to your computer and use it in GitHub Desktop.
Save runtimeZero/6790b1c272c4df39e162db60fa9dc350 to your computer and use it in GitHub Desktop.
Template for favorites
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="image-container">
<app-post *ngFor="let imageData of favoritesList"
[imageName]="imageData.name"
[displayFavoritesButton]="false"
>
</app-post>
</div>
</div>
</div>
</div>
.image-container{
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: flex-start;
}
app-post {
margin: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment