Skip to content

Commit

Permalink
#115 item list now in two columns
Browse files Browse the repository at this point in the history
  • Loading branch information
tareq89 committed Aug 16, 2016
1 parent f012b48 commit c24141c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions app/vendor-details/vendor-details.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,9 @@
background: url('/assets/img/pop-up-pizza.jpg') no-repeat center center fixed;
height: 333px;
background-size: cover;
}

.vendor-item-list {
display: inline-block;
width: 50%;
}
2 changes: 1 addition & 1 deletion app/vendor-details/vendor-details.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ <h3>{{cat.catagory}}</h3>
<hr>
<div class="row">
<ul>
<li *ngFor="let item of cat.itemlist">{{item.item}}</li>
<li class="vendor-item-list" *ngFor="let item of cat.itemlist">{{item.item}}</li>
</ul>
</div>
</div>
Expand Down

0 comments on commit c24141c

Please sign in to comment.