Browse Source

Feature/add overview menu item on mobile (#290)

* Add overview menu item

* Update changelog
pull/291/head
Thomas 3 years ago
committed by GitHub
parent
commit
13090bf6b5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      CHANGELOG.md
  2. 10
      apps/client/src/app/components/header/header.component.html

4
CHANGELOG.md

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
### Added
- Added the overview menu item on mobile
### Changed
- Refactored the exchange rate service

10
apps/client/src/app/components/header/header.component.html

@ -155,6 +155,16 @@
</button>
<hr class="m-0" />
</ng-container>
<a
class="d-block d-sm-none"
i18n
mat-menu-item
[ngClass]="{
'font-weight-bold': currentRoute === 'home' || currentRoute === 'zen'
}"
[routerLink]="['/']"
>Overview</a
>
<a
*ngIf="user?.settings?.viewMode === 'DEFAULT'"
class="d-block d-sm-none"

Loading…
Cancel
Save