diff --git a/app/src/app/app.scss b/app/src/app/app.scss index 806571a..7528722 100644 --- a/app/src/app/app.scss +++ b/app/src/app/app.scss @@ -29,6 +29,14 @@ body { color: #999; font-size: 1.4rem; } + + ion-note { + color: #999; + max-width: 50%; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } } .grid--table { diff --git a/app/src/pages/block-detail/block-detail.html b/app/src/pages/block-detail/block-detail.html index 6979840..0103df0 100644 --- a/app/src/pages/block-detail/block-detail.html +++ b/app/src/pages/block-detail/block-detail.html @@ -16,81 +16,81 @@ Number of Transactions - + {{ block.tx.length }} - + Height - + {{ block.height }} (Mainchain) - + Block Reward - + {{ currency.getConversion(block.reward) }} - + Timestamp - + {{ block.time * 1000 | date:'medium' }} - + Mined by - + {{ block.poolInfo.poolName }} - + Merkle Root - + {{ block.merkleroot }} - + Previous Block - + {{ block.height - 1 }} - + Difficulty - + {{ block.difficulty }} - + Bits - + {{ block.bits }} - + Size (bytes) - + {{ block.size }} - + Version - + {{ block.version }} - + Nonce - + {{ block.nonce }} - + Next Block - + {{ block.height + 1 }} - +