Browse Source
Feature/various style improvements (#4788)
* Various style improvements
pull/4792/head
Thomas Kaul
1 month ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
9 additions and
5 deletions
-
apps/client/src/app/components/home-market/home-market.html
-
apps/client/src/app/pages/webauthn/webauthn-page.html
|
@ -37,8 +37,10 @@ |
|
|
[user]="user" |
|
|
[user]="user" |
|
|
/> |
|
|
/> |
|
|
@if (benchmarks?.length > 0) { |
|
|
@if (benchmarks?.length > 0) { |
|
|
<div class="mt-3 text-center"> |
|
|
<div |
|
|
<small class="text-muted" i18n> |
|
|
class="gf-text-wrap-balance line-height-1 mt-3 text-center text-muted" |
|
|
|
|
|
> |
|
|
|
|
|
<small i18n> |
|
|
Calculations are based on delayed market data and may not be |
|
|
Calculations are based on delayed market data and may not be |
|
|
displayed in real-time.</small |
|
|
displayed in real-time.</small |
|
|
> |
|
|
> |
|
|
|
@ -19,15 +19,17 @@ |
|
|
<ng-container i18n>Oops, authentication has failed.</ng-container> |
|
|
<ng-container i18n>Oops, authentication has failed.</ng-container> |
|
|
</h1> |
|
|
</h1> |
|
|
<button |
|
|
<button |
|
|
class="mb-3 mt-4" |
|
|
class="mt-4" |
|
|
color="primary" |
|
|
color="primary" |
|
|
mat-flat-button |
|
|
mat-flat-button |
|
|
(click)="signIn()" |
|
|
(click)="signIn()" |
|
|
> |
|
|
> |
|
|
<ng-container i18n>Try again</ng-container> |
|
|
<ng-container i18n>Try again</ng-container> |
|
|
</button> |
|
|
</button> |
|
|
<div class="text-muted"><ng-container i18n>or</ng-container></div> |
|
|
<div class="my-2 text-muted"> |
|
|
<button class="mt-1" mat-flat-button (click)="deregisterDevice()"> |
|
|
<ng-container i18n>or</ng-container> |
|
|
|
|
|
</div> |
|
|
|
|
|
<button mat-stroked-button (click)="deregisterDevice()"> |
|
|
<ng-container i18n>Go back to Home Page</ng-container> |
|
|
<ng-container i18n>Go back to Home Page</ng-container> |
|
|
</button> |
|
|
</button> |
|
|
</div> |
|
|
</div> |
|
|