hourly blocks clock faces

This commit is contained in:
Mononaut
2023-04-15 05:26:18 +09:00
parent 1615ace9b7
commit 293c636665
13 changed files with 428 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
<div class="clock-wrapper">
<app-clock-face>
<div class="block-wrapper">
<ng-container *ngIf="block && block.height >= 0">
<div class="block-sizer" [style]="blockSizerStyle">
<app-mempool-block-overview [index]="0"></app-mempool-block-overview>
</div>
<div class="fader"></div>
<div class="title-wrapper">
<h1 class="block-height">{{ block.height }}</h1>
</div>
</ng-container>
</div>
</app-clock-face>
</div>