feat(dashboard): add recent tab and add scroll to contacts

This commit is contained in:
KostyaDanovsky 2017-07-05 20:18:53 +03:00
parent b4b32a3577
commit d8b7c81f46
3 changed files with 36 additions and 5 deletions

View file

@ -3,11 +3,14 @@
<nga-tab tabTitle="Contacts">
<div class="contact" *ngFor="let c of contacts">
<nga-user [picture]="c.user.picture" [name]="c.user.name" [title]="c.type" size="xmedium"></nga-user>
<i class="ion-ios-telephone-outline"></i>
<i class="i-contact ion-ios-telephone-outline"></i>
</div>
</nga-tab>
<nga-tab tabTitle="Recent">
<span>Content #2</span>
<div class="contact" *ngFor="let c of recent">
<nga-user [picture]="c.user.picture" [name]="c.user.name" [title]="c.type" size="xmedium"></nga-user>
<span class="time">{{ c.time }}</span>
</div>
</nga-tab>
</nga-tabset>
</nga-card>