mirror of https://github.com/ghostfolio/ghostfolio
committed by
GitHub
10 changed files with 45 additions and 14 deletions
@ -1,4 +1,4 @@ |
|||||
<span class="align-items-center d-flex" |
<span class="align-items-center d-flex" |
||||
><span class="d-inline-block logo mr-1"></span> |
><span class="d-inline-block logo mr-1"></span> |
||||
<span class="name">Ghostfolio</span></span |
<span *ngIf="!hideName" class="name">Ghostfolio</span></span |
||||
> |
> |
||||
|
@ -1,9 +1,13 @@ |
|||||
<a |
<div class="p-3"> |
||||
class="align-items-center justify-content-center" |
<div class="d-flex justify-content-center mb-1"> |
||||
color="primary" |
<gf-logo size="large" [hideName]="true"></gf-logo> |
||||
[routerLink]="['/transactions']" |
</div> |
||||
mat-button |
<a |
||||
> |
class="align-items-center justify-content-center" |
||||
<ion-icon class="mr-1" name="time-outline" size="large"></ion-icon> |
color="primary" |
||||
<span i18n>Time to add your first transaction.</span> |
[routerLink]="['/transactions']" |
||||
</a> |
mat-button |
||||
|
> |
||||
|
<span i18n>Time to add your first transaction.</span> |
||||
|
</a> |
||||
|
</div> |
||||
|
@ -1,3 +1,13 @@ |
|||||
:host { |
:host { |
||||
|
border: 1px solid rgba(var(--dark-dividers)); |
||||
|
border-radius: 0.25rem; |
||||
display: block; |
display: block; |
||||
|
|
||||
|
gf-logo { |
||||
|
opacity: 0.25; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
:host-context(.is-dark-theme) { |
||||
|
border-color: rgba(var(--light-dividers)); |
||||
} |
} |
||||
|
Loading…
Reference in new issue