Created
August 31, 2017 14:58
-
-
Save runtimeZero/93ad30e0ec0108e39026a735b4b37b2a to your computer and use it in GitHub Desktop.
template for following
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 post of postList" | |
[imageName]="post.data.name" | |
[displayFollowButton]="false" | |
[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