diff --git a/CHANGELOG.md b/CHANGELOG.md index bbec30610..c25f19f1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Unreleased + +### Changed + +- Added links to the statistics section on the about page + ## 1.102.0 - 11.01.2022 ### Changed diff --git a/apps/client/src/app/pages/about/about-page.html b/apps/client/src/app/pages/about/about-page.html index 44c8ae9cc..ca3375652 100644 --- a/apps/client/src/app/pages/about/about-page.html +++ b/apps/client/src/app/pages/about/about-page.html @@ -132,16 +132,35 @@
-

{{ statistics?.slackCommunityUsers ?? '-' }}

-
Users in Slack community
+ +

+ {{ statistics?.slackCommunityUsers ?? '-' }} +

+
Users in Slack community
+
-

{{ statistics?.gitHubContributors ?? '-' }}

-
Contributors on GitHub
+ +

+ {{ statistics?.gitHubContributors ?? '-' }} +

+
Contributors on GitHub
+
-

{{ statistics?.gitHubStargazers ?? '-' }}

-
Stars on GitHub
+ +

{{ statistics?.gitHubStargazers ?? '-' }}

+
Stars on GitHub
+
@@ -150,22 +169,28 @@
-
- Blog -
Changelog & License
+
+ Blog +
diff --git a/apps/client/src/app/pages/about/about-page.scss b/apps/client/src/app/pages/about/about-page.scss index 2e4517709..498665eff 100644 --- a/apps/client/src/app/pages/about/about-page.scss +++ b/apps/client/src/app/pages/about/about-page.scss @@ -2,13 +2,8 @@ color: rgb(var(--dark-primary-text)); display: block; - a { - color: rgb(var(--dark-primary-text)); - } - .mat-card { - &.about-container, - &.changelog { + &.about-container { a { color: rgba(var(--palette-primary-500), 1); font-weight: 500; @@ -19,29 +14,6 @@ } } - &.changelog { - ::ng-deep { - markdown { - h1, - p { - display: none; - } - - h2 { - font-size: 18px; - - &:not(:first-of-type) { - margin-top: 2rem; - } - } - - h3 { - font-size: 15px; - } - } - } - } - .independent-and-bootstrapped-logo { background-image: url('/assets/bootstrapped-dark.svg'); background-position: center; @@ -57,10 +29,6 @@ :host-context(.is-dark-theme) { color: rgb(var(--light-primary-text)); - a { - color: rgb(var(--light-primary-text)); - } - .mat-card { .independent-and-bootstrapped-logo { background-image: url('/assets/bootstrapped-light.svg');