forked from airgap-it/airgap-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9747dde
commit 8ea1a1f
Showing
19 changed files
with
145 additions
and
188 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/app/components/current-wallet-group/current-wallet-group.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
.divider--line { | ||
border-top: 2px solid var(--ion-color-primary); | ||
margin-top: 32px; | ||
} | ||
.request--container { | ||
h5 { | ||
word-break: break-all; | ||
} | ||
ion-avatar { | ||
margin: auto; | ||
} | ||
} | ||
.badge__margin { | ||
margin: 0px 6px 0px 0px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,3 @@ | ||
.divider--line { | ||
border-top: 2px solid var(--ion-color-primary); | ||
margin-top: 32px; | ||
} | ||
img { | ||
height: 48px !important; | ||
width: 48px !important; | ||
} | ||
.request--container { | ||
h5 { | ||
word-break: break-all; | ||
} | ||
ion-avatar { | ||
display: block; | ||
margin: auto; | ||
} | ||
} | ||
.badge__margin { | ||
margin: 0px 6px 0px 0px; | ||
.by-beacon__img { | ||
width: 32px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,34 @@ | ||
<ion-header> | ||
<ion-toolbar> | ||
<ion-buttons slot="start"> | ||
<ion-back-button></ion-back-button> | ||
</ion-buttons> | ||
<ion-title>{{ 'health-check.title' | translate }}</ion-title> | ||
</ion-toolbar> | ||
<ion-header class="ion-no-border"> | ||
<ion-grid fixed="true" class="ion-no-padding"> | ||
<ion-toolbar> | ||
<ion-buttons slot="start"> | ||
<ion-back-button defaultHref="/tabs/settings"></ion-back-button> | ||
</ion-buttons> | ||
<ion-title>{{ 'health-check.title' | translate }}</ion-title> | ||
</ion-toolbar> | ||
</ion-grid> | ||
</ion-header> | ||
|
||
<ion-content> | ||
<ion-list> | ||
<ion-card *ngFor="let item of items"> | ||
<ion-card-header> | ||
<ion-item lines="none"> | ||
<ion-card-title>{{item.title}}</ion-card-title> | ||
<ion-buttons slot="end"> | ||
<ion-button shape="round" size="small" color="secondary"> | ||
<ion-spinner name="lines-small" color="primary" *ngIf="item.status === 'pending'"></ion-spinner> | ||
<span *ngIf="item.status === 'loading'">{{item.status}}</span> | ||
<span *ngIf="item.status === 'fail'"><ion-icon size="large" color="danger" name="close-circle"></ion-icon></span> | ||
<span *ngIf="item.status === 'success'"> | ||
<ion-icon size="large" color="success" name="checkmark-circle-outline"></ion-icon> | ||
</span> | ||
</ion-button> | ||
</ion-buttons> | ||
</ion-item> | ||
</ion-card-header> | ||
</ion-card> | ||
</ion-list> | ||
<ion-grid fixed="true" class="ion-no-padding"> | ||
<ion-list> | ||
<ion-card *ngFor="let item of items"> | ||
<ion-card-header> | ||
<ion-item lines="none"> | ||
<ion-card-title>{{item.title}}</ion-card-title> | ||
<ion-buttons slot="end"> | ||
<ion-button shape="round" size="small" color="secondary"> | ||
<ion-spinner name="lines-small" color="primary" *ngIf="item.status === 'pending'"></ion-spinner> | ||
<span *ngIf="item.status === 'loading'">{{item.status}}</span> | ||
<span *ngIf="item.status === 'fail'"><ion-icon size="large" color="danger" name="close-circle"></ion-icon></span> | ||
<span *ngIf="item.status === 'success'"> | ||
<ion-icon size="large" color="success" name="checkmark-circle-outline"></ion-icon> | ||
</span> | ||
</ion-button> | ||
</ion-buttons> | ||
</ion-item> | ||
</ion-card-header> | ||
</ion-card> | ||
</ion-list> | ||
</ion-grid> | ||
</ion-content> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
<ion-header> | ||
<ion-toolbar> | ||
<ion-buttons slot="start"> | ||
<ion-back-button></ion-back-button> | ||
</ion-buttons> | ||
<ion-title>{{ 'qr-settings-page.title' | translate }}</ion-title> | ||
</ion-toolbar> | ||
<ion-header class="ion-no-border"> | ||
<ion-grid fixed="true" class="ion-no-padding"> | ||
<ion-toolbar> | ||
<ion-buttons slot="start"> | ||
<ion-back-button defaultHref="/tabs/settings"></ion-back-button> | ||
</ion-buttons> | ||
<ion-title>{{ 'qr-settings-page.title' | translate }}</ion-title> | ||
</ion-toolbar> | ||
</ion-grid> | ||
</ion-header> | ||
|
||
<ion-content> | ||
<ion-grid fixed="true"> | ||
<airgap-qr-settings></airgap-qr-settings> | ||
</ion-content> | ||
</ion-grid> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.