Removing halving event code.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<div class="mempool-blocks-container">
|
||||
<div class="flashing">
|
||||
<div *ngFor="let projectedBlock of mempoolBlocks; let i = index; trackBy: trackByFn">
|
||||
<div class="bitcoin-block text-center mempool-block" [class.blink-bg]="blocksLeftToHalving === (i + 1)" id="mempool-block-{{ i }}" [ngStyle]="getStyleForMempoolBlockAtIndex(i)">
|
||||
<div class="bitcoin-block text-center mempool-block" id="mempool-block-{{ i }}" [ngStyle]="getStyleForMempoolBlockAtIndex(i)">
|
||||
<a [routerLink]="['/mempool-block/' | relativeUrl, i]" class="blockLink"> </a>
|
||||
<div class="block-body" *ngIf="mempoolBlocks?.length">
|
||||
<div class="fees">
|
||||
|
||||
@@ -111,21 +111,3 @@
|
||||
left: 0;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
|
||||
|
||||
// Blinking block
|
||||
|
||||
.blink-bg {
|
||||
color: #fff;
|
||||
animation: blinkingBackground 1s infinite;
|
||||
background: inherit !important;
|
||||
}
|
||||
|
||||
@keyframes blinkingBackground {
|
||||
0% { background-color: #10c018;}
|
||||
25% { background-color: #1056c0;}
|
||||
50% { background-color: #ef0a1a;}
|
||||
75% { background-color: #CFB53B;}
|
||||
100% { background-color: #04a1d5;}
|
||||
}
|
||||
Reference in New Issue
Block a user