Browse Source
Feature/make header background solid (#817)
* Remove alpha
* Update changelog
pull/818/head
Thomas Kaul
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
3 additions and
2 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/header/header.component.scss
|
@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
- Switched to the new calculation engine |
|
|
- Switched to the new calculation engine |
|
|
- Improved the 4% rule in the _FIRE_ section |
|
|
- Improved the 4% rule in the _FIRE_ section |
|
|
|
|
|
- Changed the background of the header to a solid color |
|
|
|
|
|
|
|
|
## 1.133.0 - 07.04.2022 |
|
|
## 1.133.0 - 07.04.2022 |
|
|
|
|
|
|
|
|
|
@ -5,7 +5,7 @@ |
|
|
z-index: 999; |
|
|
z-index: 999; |
|
|
|
|
|
|
|
|
.mat-toolbar { |
|
|
.mat-toolbar { |
|
|
background-color: rgba(var(--light-disabled-text)); |
|
|
background-color: var(--light-background); |
|
|
|
|
|
|
|
|
.spacer { |
|
|
.spacer { |
|
|
flex: 1 1 auto; |
|
|
flex: 1 1 auto; |
|
@ -27,6 +27,6 @@ |
|
|
|
|
|
|
|
|
:host-context(.is-dark-theme) { |
|
|
:host-context(.is-dark-theme) { |
|
|
.mat-toolbar { |
|
|
.mat-toolbar { |
|
|
background-color: rgba(39, 39, 39, $alpha-disabled-text); |
|
|
background-color: var(--dark-background); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|