Merge pull request #5270 from mempool/simon/accelerate-logo-wip

Accelerate logo
This commit is contained in:
wiz 2024-07-03 19:45:25 +09:00 committed by GitHub
commit 9d6816132b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 27 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -125,8 +125,8 @@
<!-- Accelerator --> <!-- Accelerator -->
<ng-container *ngIf="!tx?.status?.confirmed && showAccelerationSummary && (ETA$ | async) as eta;"> <ng-container *ngIf="!tx?.status?.confirmed && showAccelerationSummary && (ETA$ | async) as eta;">
<br> <br>
<div class="title float-left"> <div class="title float-left mb-1">
<h2 i18n="transaction.accelerate|Accelerate button label">Accelerate</h2> <h2><app-svg-images name="accelerator" height="45px"></app-svg-images></h2>
</div> </div>
<button type="button" class="btn btn-outline-info accelerator-toggle btn-sm float-right" (click)="closeAccelerator()" i18n="accelerator.hide">Hide accelerator</button> <button type="button" class="btn btn-outline-info accelerator-toggle btn-sm float-right" (click)="closeAccelerator()" i18n="accelerator.hide">Hide accelerator</button>

View File

@ -198,6 +198,11 @@
} }
} }
.accelerator-toggle {
position: relative;
bottom: -18px;
}
.subtitle-block { .subtitle-block {
display: flex; display: flex;
flex-direction: row; flex-direction: row;