mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-18 14:22:35 +00:00
11 lines
545 B
HTML
11 lines
545 B
HTML
<div *ngIf="mails.length === 0" fxLayout="column" fxLayoutAlign="center center" fxFlexFill>
|
|
<span class="no-messages-text hint-text">{{ 'MAIL.NO_MESSAGES' | translate }}</span>
|
|
</div>
|
|
|
|
<div class="mail-list" *fuseIfOnDom [@animateStagger]="{value:'50'}">
|
|
<mail-list-item matRipple *ngFor="let mail of mails" [mail]="mail" (click)="readMail(mail.id)"
|
|
[ngClass]="{'current-mail mat-accent-50-bg':mail?.id == currentMail?.id}"
|
|
[@animate]="{value:'*',params:{y:'100%'}}">
|
|
</mail-list-item>
|
|
</div>
|