Skip to content

Commit

Permalink
Merge branch 'feat/no-graph-nik-feedback' into 'develop'
Browse files Browse the repository at this point in the history
Feat/no graph nik feedback

See merge request papers/airgap/airgap-wallet!670
  • Loading branch information
godenzim committed Jul 7, 2023
2 parents daecf62 + 8a7970a commit a601726
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@
[value]="currentGroup$ | async"
(ionChange)="onChange($event)"
interface="popover"
class="font--weight__bold"
aria-label="Wallet Group Selection"
>
<ion-select-option *ngFor="let group of groups$ | async" [value]="group">
<ion-text>
{{ group | groupLabel | translate }}
</ion-text>
<ion-select-option aria-label="option" *ngFor="let group of groups$ | async" [value]="group">
<ion-label>
<h2>{{ group | groupLabel | translate }}</h2>
</ion-label>
</ion-select-option>
</ion-select>
</ion-item>
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.single-group-label{
flex: 0 0 auto;
}

ion-select {
width: 400px;
}

ion-select::part(text) {
flex: 0 0 auto;
}
4 changes: 4 additions & 0 deletions src/app/pages/portfolio/portfolio.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.ion-no-margin {
font-size: 50px;
font-weight: bold;
}
.loading-header {
color: white;
font-weight: 300;
Expand Down

0 comments on commit a601726

Please sign in to comment.