diff --git a/app/src/app/app.scss b/app/src/app/app.scss
index a967d6f..553250e 100644
--- a/app/src/app/app.scss
+++ b/app/src/app/app.scss
@@ -7,7 +7,14 @@
// styles are for the entire app and not just one component.
// Additionally, this file can be also used as an entry point
// to import other Sass files to be included in the output CSS.
-//
+
+.ellipsis {
+ display: block;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+
// Shared Sass variables, which can be used to adjust Ionic's
// default Sass variables, belong in "theme/variables.scss".
//
diff --git a/app/src/components/transaction/transaction.html b/app/src/components/transaction/transaction.html
index 7311bf4..81fea29 100644
--- a/app/src/components/transaction/transaction.html
+++ b/app/src/components/transaction/transaction.html
@@ -57,7 +57,9 @@
- {{ vout.value + ' BTC' }} (S)(U)
+ {{ vout.value + ' BTC' }}
+ (S)
+ (U)
diff --git a/app/src/components/transaction/transaction.scss b/app/src/components/transaction/transaction.scss
index af4423d..59fc005 100644
--- a/app/src/components/transaction/transaction.scss
+++ b/app/src/components/transaction/transaction.scss
@@ -8,11 +8,4 @@ transaction {
border: 1px solid #eee;
}
}
-
- .ellipsis {
- display: block;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
}
diff --git a/app/src/pages/block-detail/block-detail.html b/app/src/pages/block-detail/block-detail.html
index 02e00b2..1cdf992 100644
--- a/app/src/pages/block-detail/block-detail.html
+++ b/app/src/pages/block-detail/block-detail.html
@@ -4,7 +4,7 @@
Block #{{ block.height }}
- BlockHash {{ block.hash }}
+ BlockHash {{ block.hash }}
Summary
@@ -41,7 +41,7 @@
Merkle Root
-
+
{{ block.merkleroot }}
diff --git a/app/src/pages/transaction/transaction.html b/app/src/pages/transaction/transaction.html
index 715ab9f..821d535 100644
--- a/app/src/pages/transaction/transaction.html
+++ b/app/src/pages/transaction/transaction.html
@@ -4,7 +4,7 @@
Transaction
- {{ tx.txid }}
+ Transaction {{ tx.txid }}
Summary