mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-03-04 21:00:16 +01:00
feat(dashboard): add recent tab and add scroll to contacts
This commit is contained in:
parent
b4b32a3577
commit
d8b7c81f46
3 changed files with 36 additions and 5 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue