feat: implement mobile header (#2559)

* feat: implement mobile header

* chore: remove remaining ties to old ui project

* chore: remove ionic from login page

* chore: address comments
This commit is contained in:
Alex Inkin
2024-02-13 20:03:09 +04:00
committed by GitHub
parent 9a0ae549f6
commit 513fb3428a
63 changed files with 1551 additions and 799 deletions

View File

@@ -1,8 +1,6 @@
<ion-item *ngIf="error$ | async as error">
<ion-label>
<ion-text safeLinks color="danger">{{ error }}</ion-text>
</ion-label>
</ion-item>
<tui-notification *ngIf="error$ | async as error" status="error" safeLinks>
{{ error }}
</tui-notification>
<div
*ngIf="content$ | async as result; else loading"
@@ -12,5 +10,5 @@
></div>
<ng-template #loading>
<text-spinner [text]="'Loading ' + title | titlecase"></text-spinner>
<tui-loader [textContent]="'Loading ' + title | titlecase" />
</ng-template>