From 2ae129fd94f91845585b0b56026763c3b369be17 Mon Sep 17 00:00:00 2001 From: Darren Nelsen Date: Tue, 5 Sep 2017 17:22:53 -0400 Subject: [PATCH] styled the fee and confirmation row in the grid of the transaction component --- app/src/components/transaction/transaction.html | 16 ++++++++-------- app/src/components/transaction/transaction.scss | 4 ++++ 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/app/src/components/transaction/transaction.html b/app/src/components/transaction/transaction.html index 78b2ea6..724c379 100644 --- a/app/src/components/transaction/transaction.html +++ b/app/src/components/transaction/transaction.html @@ -85,15 +85,15 @@ - - - Fee {{ currency.getConversion(tx.fees) }} + + +
+ Fee {{ currency.getConversion(tx.fees) }} +
- - {{ tx.confirmations }} Confirmations - - - {{ currency.getConversion(tx.valueOut) }} + + {{ tx.confirmations }} Confirmations + {{ currency.getConversion(tx.valueOut) }}
diff --git a/app/src/components/transaction/transaction.scss b/app/src/components/transaction/transaction.scss index efecd52..af682a0 100644 --- a/app/src/components/transaction/transaction.scss +++ b/app/src/components/transaction/transaction.scss @@ -9,6 +9,10 @@ transaction { ion-row { border: 1px solid #eee; + + &.small { + font-size: 1.1rem; + } } }