diff --git a/frontend/src/app/components/about/about.component.html b/frontend/src/app/components/about/about.component.html index 7569b01b5..c72f8f2f3 100644 --- a/frontend/src/app/components/about/about.component.html +++ b/frontend/src/app/components/about/about.component.html @@ -34,7 +34,7 @@ - +
Fee APIFee API
@@ -59,7 +59,7 @@ - - + +
+ Default push: {{ '{' }} action: 'want', data: ['blocks', ...] {{ '}' }} to express what you want pushed. Available: 'blocks', 'mempool-blocks', 'live-2h-chart' and 'stats'. @@ -70,10 +70,10 @@ to receive all new transactions containing that address as input or output. Returns an array of transactions. 'address-transactions' for new mempool transactions and 'address-block-transactions' for new block confirmed transactions. -
+
-
diff --git a/frontend/src/app/components/about/about.component.scss b/frontend/src/app/components/about/about.component.scss index 1616a58cf..3cb679ce3 100644 --- a/frontend/src/app/components/about/about.component.scss +++ b/frontend/src/app/components/about/about.component.scss @@ -5,4 +5,8 @@ .code { background-color: #1d1f31; font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New; +} + +tr { + white-space: inherit; } \ No newline at end of file diff --git a/frontend/src/app/components/block/block.component.html b/frontend/src/app/components/block/block.component.html index c796a7685..a1085fa29 100644 --- a/frontend/src/app/components/block/block.component.html +++ b/frontend/src/app/components/block/block.component.html @@ -6,8 +6,6 @@ -
-
@@ -80,8 +78,6 @@

{{ transactions?.length || '?' }} of {{ block.tx_count }} transactions

-
-
@@ -109,8 +105,6 @@ -
-
diff --git a/frontend/src/app/components/transaction/transaction.component.html b/frontend/src/app/components/transaction/transaction.component.html index 687ff3dfc..3a0e45229 100644 --- a/frontend/src/app/components/transaction/transaction.component.html +++ b/frontend/src/app/components/transaction/transaction.component.html @@ -1,17 +1,17 @@
-

Transaction

+

Transaction

- + - +
+
diff --git a/frontend/src/app/components/transaction/transaction.component.scss b/frontend/src/app/components/transaction/transaction.component.scss index 33c4353d9..623f31e8d 100644 --- a/frontend/src/app/components/transaction/transaction.component.scss +++ b/frontend/src/app/components/transaction/transaction.component.scss @@ -23,3 +23,7 @@ width: 150px; } } + +h1 { + margin-bottom: 0; +} \ No newline at end of file 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 cce721bda..edfb7bcdf 100644 --- a/frontend/src/app/components/transactions-list/transactions-list.component.html +++ b/frontend/src/app/components/transactions-list/transactions-list.component.html @@ -1,7 +1,7 @@
- {{ tx.txid | shortenString : 24 }} + {{ tx.txid | shortenString : 16 }} {{ tx.txid }}
diff --git a/frontend/src/styles.scss b/frontend/src/styles.scss index 9fae107e4..40dc19d81 100644 --- a/frontend/src/styles.scss +++ b/frontend/src/styles.scss @@ -331,7 +331,16 @@ tr { } h1, h2, h3 { - margin-bottom: 15px; + margin-bottom: 1rem; +} + +@media (max-width: 767.98px) { + h1 { + font-size: 2rem; + } + h2 { + font-size: 1.50rem; + } } @media (min-width: 992px) {