added empty followers message

This commit is contained in:
Nicolas Constant 2020-06-16 23:09:49 -04:00
parent 5230b3a115
commit bce2cd0527
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
2 changed files with 6 additions and 0 deletions

View File

@ -4,5 +4,6 @@
[account]="account"
(accountSelected)="browseAccount($event)"></app-account>
</div>
<div *ngIf="accounts.length === 0 && !isLoading" class="follow__empty"> There is nothing here! </div>
<app-waiting-animation *ngIf="isLoading" class="waiting-icon"></app-waiting-animation>
</div>

View File

@ -7,6 +7,11 @@
overflow: auto;
position: relative;
&__empty {
padding: 20px 0 0 0;
text-align: center;
}
}
.account {