Feature/add no transactions info on zen page (#222)
* Add no transactions info to zen page * Update changelogpull/223/head
parent
120b691336
commit
9072cbdba1
@ -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 @@
|
|||||||
|
<div class="p-3">
|
||||||
|
<div class="d-flex justify-content-center mb-1">
|
||||||
|
<gf-logo size="large" [hideName]="true"></gf-logo>
|
||||||
|
</div>
|
||||||
<a
|
<a
|
||||||
class="align-items-center justify-content-center"
|
class="align-items-center justify-content-center"
|
||||||
color="primary"
|
color="primary"
|
||||||
[routerLink]="['/transactions']"
|
[routerLink]="['/transactions']"
|
||||||
mat-button
|
mat-button
|
||||||
>
|
>
|
||||||
<ion-icon class="mr-1" name="time-outline" size="large"></ion-icon>
|
|
||||||
<span i18n>Time to add your first transaction.</span>
|
<span i18n>Time to add your first transaction.</span>
|
||||||
</a>
|
</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