diff --git a/frontend/src/app/components/address/address.component.html b/frontend/src/app/components/address/address.component.html index 4cb981c0d..820303afd 100644 --- a/frontend/src/app/components/address/address.component.html +++ b/frontend/src/app/components/address/address.component.html @@ -15,15 +15,15 @@ Total received - {{ receieved / 100000000 | number: '1.2-8' }} BTC + {{ receieved / 100000000 | number: '1.8-8' }} BTC Total sent - {{ sent / 100000000 | number: '1.2-8' }} BTC + {{ sent / 100000000 | number: '1.8-8' }} BTC Balance - {{ (receieved - sent) / 100000000 | number: '1.2-8' }} BTC () + {{ (receieved - sent) / 100000000 | number: '1.8-8' }} BTC () diff --git a/frontend/src/app/components/latest-blocks/latest-blocks.component.html b/frontend/src/app/components/latest-blocks/latest-blocks.component.html index b9245faba..4983a2fb9 100644 --- a/frontend/src/app/components/latest-blocks/latest-blocks.component.html +++ b/frontend/src/app/components/latest-blocks/latest-blocks.component.html @@ -1,11 +1,11 @@ - - - - - - + + + + + + diff --git a/frontend/src/app/components/latest-transactions/latest-transactions.component.html b/frontend/src/app/components/latest-transactions/latest-transactions.component.html index 984ef3406..21ef37ad0 100644 --- a/frontend/src/app/components/latest-transactions/latest-transactions.component.html +++ b/frontend/src/app/components/latest-transactions/latest-transactions.component.html @@ -1,16 +1,17 @@
HeightTimestampMinedTransactionsSizeFilledHeightTimestampMinedTransactionsSizeFilled
- + - + - - + + + @@ -19,7 +20,7 @@ - + diff --git a/frontend/src/app/components/latest-transactions/latest-transactions.component.scss b/frontend/src/app/components/latest-transactions/latest-transactions.component.scss index e69de29bb..c26280a0e 100644 --- a/frontend/src/app/components/latest-transactions/latest-transactions.component.scss +++ b/frontend/src/app/components/latest-transactions/latest-transactions.component.scss @@ -0,0 +1,10 @@ +@media (min-width: 768px) { + .d-md-block { + display: table-cell !important; + } +} +@media (min-width: 992px) { + .d-lg-block { + display: table-cell !important; + } +}
Transaction IDValueValue SizeFeeFee
{{ transaction.txid }}{{ transaction.value / 100000000 }} BTC{{ transaction.txid | shortenString }}{{ transaction.txid }}{{ transaction.value / 100000000 | number: '1.8-8' }} BTC {{ transaction.vsize | vbytes: 2 }} {{ transaction.fee / transaction.vsize | number : '1.2-2'}} sats/vB