diff --git a/frontend/src/app/components/blockchain/blockchain.component.html b/frontend/src/app/components/blockchain/blockchain.component.html index dbe8971cf..1470243ce 100644 --- a/frontend/src/app/components/blockchain/blockchain.component.html +++ b/frontend/src/app/components/blockchain/blockchain.component.html @@ -1,18 +1,15 @@
-
- - +
+
- - -
-

Waiting for blocks...

-
-
-
-
-
\ No newline at end of file +
+
+

Waiting for blocks...

+
+
+
+
diff --git a/frontend/src/app/components/blockchain/blockchain.component.scss b/frontend/src/app/components/blockchain/blockchain.component.scss index 4db6a0b08..03528a341 100644 --- a/frontend/src/app/components/blockchain/blockchain.component.scss +++ b/frontend/src/app/components/blockchain/blockchain.component.scss @@ -28,7 +28,10 @@ @media (max-width: 767.98px) { .position-container { - left: 97%; + left: 95%; + } + .position-container.loading { + left: 50%; } } diff --git a/frontend/src/app/components/fees-box/fees-box.component.html b/frontend/src/app/components/fees-box/fees-box.component.html index d2f9e0ba9..f70fdf091 100644 --- a/frontend/src/app/components/fees-box/fees-box.component.html +++ b/frontend/src/app/components/fees-box/fees-box.component.html @@ -4,7 +4,7 @@ 30 minutes Next block - + {{ feeEstimations.hourFee }} sat/vB () {{ feeEstimations.halfHourFee }} sat/vB () {{ feeEstimations.fastestFee }} sat/vB () diff --git a/frontend/src/app/components/fees-box/fees-box.component.ts b/frontend/src/app/components/fees-box/fees-box.component.ts index c55c164a8..a4e351c3b 100644 --- a/frontend/src/app/components/fees-box/fees-box.component.ts +++ b/frontend/src/app/components/fees-box/fees-box.component.ts @@ -17,12 +17,14 @@ interface FeeEstimations { }) export class FeesBoxComponent implements OnInit { feeEstimations$: Observable; + isLoadingWebSocket$: Observable; constructor( private stateService: StateService, ) { } ngOnInit(): void { + this.isLoadingWebSocket$ = this.stateService.isLoadingWebSocket$; this.feeEstimations$ = this.stateService.mempoolBlocks$ .pipe( filter((blocks) => !!blocks.length),