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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
14 additions and
0 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/header/header.component.html
|
|
@ -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 |
|
|
|
|
|
@ -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" |
|
|
|