diff --git a/app/src/components/transaction/transaction.html b/app/src/components/transaction/transaction.html index cc3528f..85e8844 100644 --- a/app/src/components/transaction/transaction.html +++ b/app/src/components/transaction/transaction.html @@ -88,12 +88,18 @@
- Fee {{ currency.getConvertedNumber(tx.fees) | number:'1.0-8' }} {{ currency.currencySymbol }} + + Fee {{ currency.getConvertedNumber(tx.fees) | number:'1.0-8' }} {{ currency.currencySymbol }} +
- {{ tx.confirmations }} Confirmations - {{ currency.getConvertedNumber(tx.valueOut) | number:'1.0-8' }} {{ currency.currencySymbol }} + + {{ tx.confirmations | number }} Confirmations + + + {{ currency.getConvertedNumber(tx.valueOut) | number:'1.0-8' }} {{ currency.currencySymbol }} +
diff --git a/app/src/components/transaction/transaction.scss b/app/src/components/transaction/transaction.scss index 631a436..2081f9f 100644 --- a/app/src/components/transaction/transaction.scss +++ b/app/src/components/transaction/transaction.scss @@ -29,4 +29,12 @@ transaction { .list { margin-bottom: 5px } + + .chip { + //background-color: red; + + &.chip-md-primary { + //background-color: blue; + } + } }