Browse Source

Add introduction

pull/2135/head
Thomas 2 years ago
parent
commit
699b732fc0
  1. 25
      apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html
  2. 11
      apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.scss

25
apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html

@ -4,17 +4,20 @@
<h3 class="d-none d-sm-block mb-3 text-center" i18n> <h3 class="d-none d-sm-block mb-3 text-center" i18n>
Discover Open Source Alternatives for Personal Finance Tools Discover Open Source Alternatives for Personal Finance Tools
</h3> </h3>
<p> <div class="introduction mb-4">
This overview page features a curated collection of personal finance <p>
tools compared to the open source alternative Ghostfolio. If you value This overview page features a curated collection of personal finance
transparency, data privacy, and community collaboration, Ghostfolio tools compared to the open source alternative
provides an excellent opportunity to take control of your financial <a [routerLink]="['/about']">Ghostfolio</a>. If you value
management. transparency, data privacy, and community collaboration, Ghostfolio
</p> provides an excellent opportunity to take control of your financial
<p> management.
Explore the links below to compare a variety of personal finance tools </p>
with Ghostfolio. <p>
</p> Explore the links below to compare a variety of personal finance tools
with Ghostfolio.
</p>
</div>
<mat-card <mat-card
*ngFor="let product of products" *ngFor="let product of products"
appearance="outlined" appearance="outlined"

11
apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.scss

@ -1,6 +1,17 @@
:host { :host {
color: rgb(var(--dark-primary-text)); color: rgb(var(--dark-primary-text));
display: block; display: block;
.introduction {
a {
color: rgba(var(--palette-primary-500), 1);
font-weight: 500;
&:hover {
color: rgba(var(--palette-primary-300), 1);
}
}
}
} }
:host-context(.is-dark-theme) { :host-context(.is-dark-theme) {

Loading…
Cancel
Save