Browse Source

Darken background color

pull/1396/head
Thomas 3 years ago
parent
commit
31e23919f5
  1. 6
      apps/client/src/app/pages/about/about-page.html
  2. 2
      apps/client/src/styles.scss

6
apps/client/src/app/pages/about/about-page.html

@ -177,7 +177,7 @@
<a <a
class="py-2 w-100" class="py-2 w-100"
color="primary" color="primary"
mat-stroked-button mat-flat-button
[routerLink]="['/faq']" [routerLink]="['/faq']"
>FAQ</a >FAQ</a
> >
@ -189,7 +189,7 @@
<a <a
class="py-2 w-100" class="py-2 w-100"
color="primary" color="primary"
mat-stroked-button mat-flat-button
[routerLink]="['/about', 'changelog']" [routerLink]="['/about', 'changelog']"
>Changelog & License</a >Changelog & License</a
> >
@ -198,7 +198,7 @@
<a <a
class="py-2 w-100" class="py-2 w-100"
color="primary" color="primary"
mat-stroked-button mat-flat-button
[routerLink]="['/about', 'privacy-policy']" [routerLink]="['/about', 'privacy-policy']"
>Privacy Policy</a >Privacy Policy</a
> >

2
apps/client/src/styles.scss

@ -17,7 +17,7 @@ $mat-css-light-theme-selector: '.is-light-theme';
} }
:root { :root {
--dark-background: rgb(39, 39, 39); --dark-background: rgb(25, 25, 25);
--font-family-sans-serif: Roboto, 'Helvetica Neue', sans-serif; --font-family-sans-serif: Roboto, 'Helvetica Neue', sans-serif;
--light-background: rgb(255, 255, 255); --light-background: rgb(255, 255, 255);
} }

Loading…
Cancel
Save