From 7fef8d340ff23228bf7b52ee432bb27f3f9279d0 Mon Sep 17 00:00:00 2001 From: Darren Nelsen Date: Thu, 1 Feb 2018 15:19:04 -0500 Subject: [PATCH] added chips on transaction component --- app/src/components/transaction/transaction.html | 12 +++++++++--- app/src/components/transaction/transaction.scss | 8 ++++++++ 2 files changed, 17 insertions(+), 3 deletions(-) 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; + } + } }