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 46e043107..5c8853158 100644
--- a/frontend/src/app/components/latest-blocks/latest-blocks.component.html
+++ b/frontend/src/app/components/latest-blocks/latest-blocks.component.html
@@ -1,5 +1,5 @@
-
Blocks
+
Blocks
diff --git a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html
index 20d4c9097..cd482a14f 100644
--- a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html
+++ b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html
@@ -10,7 +10,7 @@
{{ projectedBlock.feeRange[0] | number:'1.0-0' }} - {{ projectedBlock.feeRange[projectedBlock.feeRange.length - 1] | number:'1.0-0' }} sat/vB
-
{{ projectedBlock.blockSize | bytes: 2 }}
+
{{ projectedBlock.blockSize | bytes: 2 }}
{{ i }} transaction
diff --git a/frontend/src/app/components/start/start.component.html b/frontend/src/app/components/start/start.component.html
index 04c1175d0..4ee2258f4 100644
--- a/frontend/src/app/components/start/start.component.html
+++ b/frontend/src/app/components/start/start.component.html
@@ -1,4 +1,4 @@
-
+
diff --git a/frontend/src/app/components/transaction/transaction.component.html b/frontend/src/app/components/transaction/transaction.component.html
index b48423fad..19645b6b3 100644
--- a/frontend/src/app/components/transaction/transaction.component.html
+++ b/frontend/src/app/components/transaction/transaction.component.html
@@ -173,7 +173,7 @@
-
Details
+
Details
diff --git a/frontend/src/app/components/transactions-list/transactions-list.component.html b/frontend/src/app/components/transactions-list/transactions-list.component.html
index a3af65da1..44a7133bf 100644
--- a/frontend/src/app/components/transactions-list/transactions-list.component.html
+++ b/frontend/src/app/components/transactions-list/transactions-list.component.html
@@ -1,6 +1,6 @@
@@ -164,19 +164,19 @@
Type |
- {{ vout.scriptpubkey_type.toUpperCase() }} |
+ {{ vout.scriptpubkey_type.toUpperCase() }} |
ScriptPubKey (ASM) |
- |
+ |
ScriptPubKey (HEX) |
- {{ vout.scriptpubkey }} |
+ {{ vout.scriptpubkey }} |
OP_RETURN data |
- {{ vout.scriptpubkey_asm | hex2ascii }} |
+ {{ vout.scriptpubkey_asm | hex2ascii }} |
diff --git a/frontend/src/styles.scss b/frontend/src/styles.scss
index f1a0ab361..b8fca1621 100644
--- a/frontend/src/styles.scss
+++ b/frontend/src/styles.scss
@@ -450,3 +450,52 @@ th {
.crypto { color: #fa3d3d }
.locktime { color: #ff8c00 }
.reserved { color: #ff8c00 }
+
+.rtl-layout {
+ .arrow {
+ @extend .arrow;
+ -webkit-transform: scaleX(-1);
+ transform: scaleX(-1);
+ }
+
+ .table td {
+ text-align: right;
+ }
+
+ .table th {
+ text-align: right;
+ }
+
+ .title-block {
+ text-align: right;
+ }
+
+ .mr-3 {
+ @extend .ml-3;
+ margin-right: 0 !important;
+ }
+
+ .mr-1 {
+ @extend .ml-1;
+ }
+
+ .float-left {
+ float: right !important;
+ }
+
+ .float-right {
+ float: left !important;
+ }
+
+ .text-left {
+ text-align: right !important;
+ }
+
+ .text-right {
+ text-align: left !important;
+ }
+
+ .bitcoin-block {
+ direction: rtl;
+ }
+}