diff --git a/CHANGELOG.md b/CHANGELOG.md index aa30f781..fa31907b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Improved the allocations page with no filtering - Harmonized the _No data available_ label in the portfolio proportion chart component - Improved the _FIRE_ calculator for the _Live Demo_ +- Simplified the about page - Upgraded `angular` from version `13.2.2` to `13.3.6` - Upgraded `Nx` from version `13.8.5` to `14.1.4` - Upgraded `storybook` from version `6.4.18` to `6.4.22` diff --git a/apps/client/src/app/pages/about/about-page.component.ts b/apps/client/src/app/pages/about/about-page.component.ts index ab4fdb57..765e9ba9 100644 --- a/apps/client/src/app/pages/about/about-page.component.ts +++ b/apps/client/src/app/pages/about/about-page.component.ts @@ -22,7 +22,6 @@ export class AboutPageComponent implements OnDestroy, OnInit { public hasPermissionForStatistics: boolean; public hasPermissionForSubscription: boolean; public isLoggedIn: boolean; - public lastPublish = environment.lastPublish; public statistics: Statistics; public user: User; public version = environment.version; diff --git a/apps/client/src/app/pages/about/about-page.html b/apps/client/src/app/pages/about/about-page.html index eb9da159..9f02c235 100644 --- a/apps/client/src/app/pages/about/about-page.html +++ b/apps/client/src/app/pages/about/about-page.html @@ -2,103 +2,101 @@

About Ghostfolio

- - -

- Ghostfolio is a lightweight wealth management - application for individuals to keep track of their wealth like - stocks, ETFs or cryptocurrencies and make solid, data-driven - investment decisions. The source code is fully available as open - source software (OSS). The project has been initiated by - Thomas Kaul - and is driven by the efforts of its - contributors. - - This instance is running Ghostfolio {{ version }} and has been - last published on {{ lastPublish }}. - - Check the system status at - status.ghostfol.io. -

-

- If you encounter a bug or would like to suggest an improvement or a - new feature, please join the - Ghostfolio - Slack community, tweet to - @ghostfolio_, send an e-mail to - hi@ghostfol.io - or open an issue at - GitHub. -

-

- - - - - - - - - - - - -

-
+

+ Ghostfolio is a lightweight wealth management + application for individuals to keep track of stocks, ETFs or + cryptocurrencies and make solid, data-driven investment decisions. The + source code is fully available as open source software (OSS). The + project has been initiated by + Thomas Kaul -

-
-
-
+ and is driven by the efforts of its + contributors. + + This instance is running Ghostfolio {{ version }}. + + Check the system status at + status.ghostfol.io. +

+

+ If you encounter a bug or would like to suggest an improvement or a + new + feature, please join the + Ghostfolio + Slack community, tweet to + @ghostfolio_, send an e-mail to + hi@ghostfol.io + or open an issue at + GitHub. +

+

+ + + + + + + + + + + + +

+
+ +
+
diff --git a/apps/client/src/app/pages/about/about-page.scss b/apps/client/src/app/pages/about/about-page.scss index 498665ef..df675944 100644 --- a/apps/client/src/app/pages/about/about-page.scss +++ b/apps/client/src/app/pages/about/about-page.scss @@ -2,15 +2,13 @@ color: rgb(var(--dark-primary-text)); display: block; - .mat-card { - &.about-container { - a { - color: rgba(var(--palette-primary-500), 1); - font-weight: 500; + .about-container { + a { + color: rgba(var(--palette-primary-500), 1); + font-weight: 500; - &:hover { - color: rgba(var(--palette-primary-300), 1); - } + &:hover { + color: rgba(var(--palette-primary-300), 1); } } @@ -29,7 +27,7 @@ :host-context(.is-dark-theme) { color: rgb(var(--light-primary-text)); - .mat-card { + .about-container { .independent-and-bootstrapped-logo { background-image: url('/assets/bootstrapped-light.svg'); opacity: 1;