styled the fee and confirmation row in the grid of the transaction component
This commit is contained in:
parent
dd99426add
commit
2ae129fd94
@ -85,15 +85,15 @@
|
|||||||
</ion-col>
|
</ion-col>
|
||||||
</ion-row>
|
</ion-row>
|
||||||
|
|
||||||
<ion-row>
|
<ion-row align-items-center text-uppercase class="small">
|
||||||
<ion-col col-3>
|
<ion-col col-6>
|
||||||
<span [hidden]="tx.isCoinBase">Fee {{ currency.getConversion(tx.fees) }}</span>
|
<div [hidden]="tx.isCoinBase">
|
||||||
|
Fee <span text-nowrap>{{ currency.getConversion(tx.fees) }}</span>
|
||||||
|
</div>
|
||||||
</ion-col>
|
</ion-col>
|
||||||
<ion-col col-6 text-center>
|
<ion-col col-6 text-right>
|
||||||
{{ tx.confirmations }} Confirmations
|
<span text-nowrap>{{ tx.confirmations }} Confirmation<span *ngIf="tx.confirmations !== 1">s</span></span>
|
||||||
</ion-col>
|
<span text-nowrap>{{ currency.getConversion(tx.valueOut) }}</span>
|
||||||
<ion-col col-3 text-right>
|
|
||||||
<span class="">{{ currency.getConversion(tx.valueOut) }}</span>
|
|
||||||
</ion-col>
|
</ion-col>
|
||||||
</ion-row>
|
</ion-row>
|
||||||
</ion-grid>
|
</ion-grid>
|
||||||
|
|||||||
@ -9,6 +9,10 @@ transaction {
|
|||||||
|
|
||||||
ion-row {
|
ion-row {
|
||||||
border: 1px solid #eee;
|
border: 1px solid #eee;
|
||||||
|
|
||||||
|
&.small {
|
||||||
|
font-size: 1.1rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user