Created
August 31, 2017 15:28
-
-
Save runtimeZero/6790b1c272c4df39e162db60fa9dc350 to your computer and use it in GitHub Desktop.
Template for favorites
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"> | |
<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