Browse Source
Bugfix/fix home button overlap on ios (#360)
* Fix overlap
* Update changelog
pull/361/head
Thomas Kaul
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
11 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/home/home-page.scss
-
apps/client/src/app/pages/zen/zen-page.scss
-
apps/client/src/index.html
|
|
@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed the _Fear & Greed Index_ (market mood) |
|
|
|
- Fixed the overlap of the home button with tabs on iOS (_Add to Home Screen_) |
|
|
|
|
|
|
|
## 1.49.0 - 08.09.2021 |
|
|
|
|
|
|
|
|
|
@ -16,6 +16,9 @@ |
|
|
|
right: 0; |
|
|
|
top: 0; |
|
|
|
|
|
|
|
margin-bottom: env(safe-area-inset-bottom); |
|
|
|
margin-bottom: constant(safe-area-inset-bottom); |
|
|
|
|
|
|
|
::ng-deep { |
|
|
|
.mat-tab-body-wrapper { |
|
|
|
height: 100%; |
|
|
|
|
|
@ -12,6 +12,9 @@ |
|
|
|
right: 0; |
|
|
|
top: 0; |
|
|
|
|
|
|
|
margin-bottom: env(safe-area-inset-bottom); |
|
|
|
margin-bottom: constant(safe-area-inset-bottom); |
|
|
|
|
|
|
|
::ng-deep { |
|
|
|
.mat-tab-body-wrapper { |
|
|
|
height: 100%; |
|
|
|
|
|
@ -27,7 +27,10 @@ |
|
|
|
name="twitter:title" |
|
|
|
content="Ghostfolio – Open Source Wealth Management Software" |
|
|
|
/> |
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" /> |
|
|
|
<meta |
|
|
|
name="viewport" |
|
|
|
content="initial-scale=1, viewport-fit=cover, width=device-width" |
|
|
|
/> |
|
|
|
<meta property="og:description" content="" /> |
|
|
|
<meta |
|
|
|
property="og:title" |
|
|
|