Hide epoch data from the mining page

This commit is contained in:
nymkappa 2022-01-20 23:54:42 +09:00
parent aa457e316b
commit f982f6b4b6
No known key found for this signature in database
GPG Key ID: E155910B16E8BD04
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
<div class="container-xl"> <div class="container-xl">
<app-difficulty [showProgress]=false [showHalving]=true></app-difficulty> <app-difficulty style="display: none;" [showProgress]=false [showHalving]=true></app-difficulty>
<div style="height: 500px; margin-top: 30px;" echarts [initOpts]="chartInitOptions" [options]="chartOptions"></div> <div style="height: 500px; margin-top: 30px;" echarts [initOpts]="chartInitOptions" [options]="chartOptions"></div>
<div class="text-center loadingGraphs" *ngIf="isLoading"> <div class="text-center loadingGraphs" *ngIf="isLoading">

View File

@ -12,7 +12,7 @@ import { MiningService, MiningStats } from '../../services/mining.service';
styles: [` styles: [`
.loadingGraphs { .loadingGraphs {
position: absolute; position: absolute;
top: 52%; top: 50%;
left: calc(50% - 16px); left: calc(50% - 16px);
z-index: 100; z-index: 100;
} }