diff --git a/frontend/src/app/components/block/block.component.html b/frontend/src/app/components/block/block.component.html
index 79151ecc3..2ef18b9dc 100644
--- a/frontend/src/app/components/block/block.component.html
+++ b/frontend/src/app/components/block/block.component.html
@@ -181,8 +181,8 @@
Miner |
-
+
+
{{ block.extras.pool.name }}
|
diff --git a/frontend/src/app/components/block/block.component.scss b/frontend/src/app/components/block/block.component.scss
index af3d60c56..fe5318375 100644
--- a/frontend/src/app/components/block/block.component.scss
+++ b/frontend/src/app/components/block/block.component.scss
@@ -272,3 +272,11 @@ h1 {
}
}
}
+
+.pool-logo {
+ width: 15px;
+ height: 15px;
+ position: relative;
+ top: -1px;
+ margin-right: 2px;
+}
diff --git a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html
index 603c7e4c0..f7d46fefd 100644
--- a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html
+++ b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html
@@ -60,9 +60,10 @@
diff --git a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.scss b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.scss
index b11a35513..0af327dbd 100644
--- a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.scss
+++ b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.scss
@@ -157,6 +157,15 @@
position: relative;
top: 15px;
z-index: 101;
+ color: #FFF;
+}
+
+.pool-logo {
+ width: 15px;
+ height: 15px;
+ position: relative;
+ top: -1px;
+ margin-right: 2px;
}
.animated {
@@ -164,6 +173,7 @@
}
.show {
opacity: 1;
+ white-space: nowrap;
}
.hide {
opacity: 0.4;
diff --git a/frontend/src/app/components/transaction/transaction.component.html b/frontend/src/app/components/transaction/transaction.component.html
index 28a68b424..b8b8602cb 100644
--- a/frontend/src/app/components/transaction/transaction.component.html
+++ b/frontend/src/app/components/transaction/transaction.component.html
@@ -676,9 +676,9 @@
Miner |
@if (pool) {
-
- {{ pool.name }}
+
+
+ {{ pool.name }}
|
} @else {
diff --git a/frontend/src/app/components/transaction/transaction.component.scss b/frontend/src/app/components/transaction/transaction.component.scss
index f32d8d9ea..7db417126 100644
--- a/frontend/src/app/components/transaction/transaction.component.scss
+++ b/frontend/src/app/components/transaction/transaction.component.scss
@@ -324,4 +324,12 @@
.goggles-icon {
display: block;
width: 2.7em;
-}
\ No newline at end of file
+}
+
+.pool-logo {
+ width: 15px;
+ height: 15px;
+ position: relative;
+ top: -1px;
+ margin-right: 2px;
+}