implement clock face & dial

This commit is contained in:
Mononaut
2023-04-19 09:39:56 +09:00
parent f879a34021
commit 3ddd51d4cb
9 changed files with 205 additions and 73 deletions

View File

@@ -1,6 +1,6 @@
.divider {
position: absolute;
left: -1px;
left: -0.5px;
top: 0;
.divider-line {
stroke: white;

View File

@@ -39,8 +39,8 @@ export class ClockchainComponent implements OnInit, OnChanges, OnDestroy {
});
this.connectionStateSubscription = this.stateService.connectionState$.subscribe(state => {
this.connected = (state === 2);
})
firstValueFrom(this.stateService.chainTip$).then(tip => {
});
firstValueFrom(this.stateService.chainTip$).then(() => {
this.loadingTip = false;
});
}