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
parent
commit
66e430ab9a
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 12
      apps/client/src/app/components/header/header.component.scss

4
CHANGELOG.md

@ -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`)

12
apps/client/src/app/components/header/header.component.scss

@ -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)
);
}
}
}

Loading…
Cancel
Save