From 08a02351ca419388112f948a2e67d447827d86fb Mon Sep 17 00:00:00 2001 From: Thomas <4159106+dtslvr@users.noreply.github.com> Date: Tue, 27 Jul 2021 20:43:44 +0200 Subject: [PATCH] Add link --- apps/client/src/app/app.component.scss | 2 +- .../2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html | 9 +++++---- .../07/hallo-ghostfolio/hallo-ghostfolio-page.module.ts | 3 ++- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/apps/client/src/app/app.component.scss b/apps/client/src/app/app.component.scss index 92968e016..bcefe5d71 100644 --- a/apps/client/src/app/app.component.scss +++ b/apps/client/src/app/app.component.scss @@ -20,7 +20,7 @@ a { color: rgba(var(--palette-primary-500), 1); - font-weight: bold; + font-weight: 500; } } } diff --git a/apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html b/apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html index c4b21ab15..46bf96f3a 100644 --- a/apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html +++ b/apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html @@ -18,10 +18,11 @@
Aufgrund der steigenden Inflation und den Negativzinsen befasse ich mich seit einiger Zeit, wie ich mein Vermögen möglichst - diversifiziert anlegen kann. Konkret verfolge ich eine Buy & Hold - Strategie mit Investitionen in verschiedene Anlageklassen verteilt - auf unterschiedliche Plattformen. Deshalb suchte ich nach einer App, - die mein Portfolio ganzheitlich zusammenfasst. Bei meiner + diversifiziert anlegen kann. Konkret verfolge ich eine + Buy and Hold Strategie mit + Investitionen in verschiedene Anlageklassen verteilt auf + unterschiedliche Plattformen. Deshalb suchte ich nach einer App, die + mein Portfolio ganzheitlich zusammenfasst. Bei meiner Internetrecherche und Suche in App Stores habe ich mehrere Lösungen ausprobiert, doch keine hat mich vollkommen überzeugt: Zu kompliziert, zu überladen, nicht optimiert für Smartphones oder zu diff --git a/apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.module.ts b/apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.module.ts index 44a24e4b6..203ab2ccc 100644 --- a/apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.module.ts +++ b/apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.module.ts @@ -1,5 +1,6 @@ import { CommonModule } from '@angular/common'; import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; +import { RouterModule } from '@angular/router'; import { HalloGhostfolioPageRoutingModule } from './hallo-ghostfolio-page-routing.module'; import { HalloGhostfolioPageComponent } from './hallo-ghostfolio-page.component'; @@ -7,7 +8,7 @@ import { HalloGhostfolioPageComponent } from './hallo-ghostfolio-page.component' @NgModule({ declarations: [HalloGhostfolioPageComponent], exports: [], - imports: [CommonModule, HalloGhostfolioPageRoutingModule], + imports: [CommonModule, HalloGhostfolioPageRoutingModule, RouterModule], providers: [], schemas: [CUSTOM_ELEMENTS_SCHEMA] })