MOBILE-3833 style: Small fix on empty box
parent
f66400aae6
commit
230e42ab5d
|
@ -24,7 +24,7 @@
|
|||
<ion-refresher-content pullingText="{{ 'core.pulltorefresh' | translate }}"></ion-refresher-content>
|
||||
</ion-refresher>
|
||||
<core-loading [hideUntil]="confirmedLoaded">
|
||||
<ion-list class="ion-no-margin">
|
||||
<ion-list class="ion-no-margin" *ngIf="confirmedContacts.length">
|
||||
<ion-item class="ion-text-wrap addon-messages-conversation-item" (click)="selectUser(contact.id)" button
|
||||
*ngFor="let contact of confirmedContacts" [attr.aria-label]="contact.fullname" detail="true"
|
||||
[attr.aria-current]="contact.id == selectedUserId ? 'page' : 'false'">
|
||||
|
@ -62,7 +62,7 @@
|
|||
<ion-refresher-content pullingText="{{ 'core.pulltorefresh' | translate }}"></ion-refresher-content>
|
||||
</ion-refresher>
|
||||
<core-loading [hideUntil]="requestsLoaded">
|
||||
<ion-list class="ion-no-margin">
|
||||
<ion-list class="ion-no-margin" *ngIf="requests.length">
|
||||
<ion-item class="ion-text-wrap addon-messages-conversation-item" *ngFor="let request of requests"
|
||||
[attr.aria-label]="request.fullname" (click)="selectUser(request.id)" button
|
||||
[attr.aria-current]="request.id == selectedUserId ? 'page' : 'false'" detail="true">
|
||||
|
|
|
@ -13,6 +13,8 @@
|
|||
padding: 16px;
|
||||
--image-size: 120px;
|
||||
|
||||
height: 100%;
|
||||
|
||||
ion-icon {
|
||||
font-size: var(--image-size);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue