Browse Source
Feature/add background gradient to sidebar navigation (#4850)
* Add background gradient to sidebar navigation
* Update changelog
pull/4854/head
Thomas Kaul
3 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
14 additions and
2 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/header/header.component.scss
|
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
|
|
- Added a background gradient to the sidebar navigation |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Improved the language localization for German (`de`) |
|
|
|
|
|
@ -7,7 +7,11 @@ |
|
|
|
|
|
|
|
.logo-container { |
|
|
|
&.filled { |
|
|
|
background-color: rgba(var(--palette-foreground-base), 0.02); |
|
|
|
background: linear-gradient( |
|
|
|
to bottom, |
|
|
|
transparent, |
|
|
|
rgba(var(--palette-foreground-base), 0.02) |
|
|
|
); |
|
|
|
} |
|
|
|
|
|
|
|
@media (min-width: 576px) { |
|
|
@ -56,7 +60,11 @@ |
|
|
|
|
|
|
|
.logo-container { |
|
|
|
&.filled { |
|
|
|
background-color: rgba(var(--palette-foreground-base-dark), 0.02); |
|
|
|
background: linear-gradient( |
|
|
|
to bottom, |
|
|
|
transparent, |
|
|
|
rgba(var(--palette-foreground-base-dark), 0.02) |
|
|
|
); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|