Merge pull request #8055 from gabrielbazan7/fix/ui

[V4] Fix: remove padding
This commit is contained in:
Gustavo Maximiliano Cortez 2018-02-16 15:05:37 -03:00 committed by GitHub
commit 49f9b74fb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 10 deletions

View File

@ -7,7 +7,7 @@
</ion-buttons>
</ion-navbar>
</ion-header>
<ion-content padding>
<ion-content>
<ion-list *ngIf="type === 'url'">
<ion-item-divider>{{'Website' |translate}}</ion-item-divider>
@ -89,4 +89,4 @@
<span translate>Copy to clipboard</span>
</button>
</ion-list>
</ion-content>
</ion-content>

View File

@ -1,17 +1,15 @@
<ion-header>
<ion-navbar>
<ion-title>{{'Sweep paper wallet' | translate}}</ion-title>
</ion-navbar>
</ion-header>
<ion-content padding>
<ion-content>
<div *ngIf="noMatchingWallet">
<span translate>No wallets available to receive funds</span>
</div>
<div *ngIf="!noMatchingWallet">
<h4 class="header" translate>
<h4 class="title" translate>
<span translate>Funds found: </span>
<span *ngIf="balanceSat">{{balanceSat | satToUnit: wallet.coin}}</span>
<span *ngIf="!balanceSat">...</span>
@ -33,4 +31,4 @@
<ion-footer>
<button ion-button block class="button-footer" (click)="sweepWallet()" [disabled]="sending || balanceSat <= 0 || noMatchingWallet"
translate>Sweep</button>
</ion-footer>
</ion-footer>

View File

@ -1,5 +1,5 @@
page-paper-wallet {
.header {
.title {
padding: 10px;
}
}

View File

@ -7,7 +7,7 @@
</ion-header>
<ion-content padding>
<ion-content>
<form [formGroup]="addressBookAdd">
<ion-list>
@ -32,4 +32,4 @@
<button ion-button block (click)="save()" [disabled]="addressBookAdd.invalid || submitAttempt">{{ 'Save' | translate }}</button>
</form>
</ion-content>
</ion-content>