diff --git a/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.html b/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.html
index df9821efe..929c9df74 100644
--- a/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.html
+++ b/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.html
@@ -4,24 +4,24 @@
-
+
+
+
+ Height |
+ Timestamp |
+ Total Sent (BSQ) |
+ Transactions |
+
+
+
+ {{ block.height }} |
+ {{ block.time | date:'yyyy-MM-dd HH:mm' }} |
+ {{ calculateTotalOutput(block) / 100 | number: '1.2-2' }} |
+ {{ block.txs.length }} |
+
+
+
+
diff --git a/frontend/src/app/bisq/bisq-transactions/bisq-transactions.component.html b/frontend/src/app/bisq/bisq-transactions/bisq-transactions.component.html
index ee8071373..5a7f9cd7c 100644
--- a/frontend/src/app/bisq/bisq-transactions/bisq-transactions.component.html
+++ b/frontend/src/app/bisq/bisq-transactions/bisq-transactions.component.html
@@ -4,33 +4,35 @@
-
-
- Transaction |
- Type |
- Total Sent (BSQ) |
- Outputs |
- Block Height |
- Block Time |
-
-
-
- {{ tx.id | shortenString : 16 }} |
- {{ tx.txTypeDisplayString }} |
-
-
- {{ tx.burntFee / 100 | number: '1.2-2' }}
-
-
- {{ calculateTotalOutput(tx.outputs) / 100 | number: '1.2-2' }}
-
- |
- {{ tx.outputs.length }} |
- {{ tx.blockHeight }} |
- {{ tx.time | date:'yyyy-MM-dd HH:mm' }} |
-
-
-
+
+
+
+ Transaction |
+ Type |
+ Total Sent (BSQ) |
+ Outputs |
+ Block Height |
+ Block Time |
+
+
+
+ {{ tx.id | shortenString : 16 }} |
+ {{ tx.txTypeDisplayString }} |
+
+
+ {{ tx.burntFee / 100 | number: '1.2-2' }}
+
+
+ {{ calculateTotalOutput(tx.outputs) / 100 | number: '1.2-2' }}
+
+ |
+ {{ tx.outputs.length }} |
+ {{ tx.blockHeight }} |
+ {{ tx.time | date:'yyyy-MM-dd HH:mm' }} |
+
+
+
+
diff --git a/frontend/src/styles.scss b/frontend/src/styles.scss
index 268ce2238..1d392a811 100644
--- a/frontend/src/styles.scss
+++ b/frontend/src/styles.scss
@@ -416,3 +416,7 @@ h1, h2, h3 {
background-color: #653b9c;
border-color: #3a1c61;
}
+
+th {
+ white-space: nowrap;
+}