From 9ef17083fc43a48d774ce68bf2137abce31b34e0 Mon Sep 17 00:00:00 2001 From: James Chien Date: Wed, 27 Jan 2021 14:13:26 +0800 Subject: [PATCH] Fix iOS toolbar on Activity and CaptureDetails page - Fix the toolbar height on iOS - Revert the change to hide status bar on iOS Signed-off-by: James Chien --- ios/App/App/Info.plist | 2 +- src/global.scss | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ios/App/App/Info.plist b/ios/App/App/Info.plist index 0cf779b50..ea47822b5 100644 --- a/ios/App/App/Info.plist +++ b/ios/App/App/Info.plist @@ -64,7 +64,7 @@ armv7 UIStatusBarHidden - + UISupportedInterfaceOrientations UIInterfaceOrientationPortrait diff --git a/src/global.scss b/src/global.scss index f86af4b53..12c8001eb 100644 --- a/src/global.scss +++ b/src/global.scss @@ -47,6 +47,7 @@ mat-toolbar { @media (min-width: 380px) { .ios mat-toolbar { padding-top: 30px; + min-height: 90px; height: 90px; } } @@ -62,6 +63,7 @@ mat-toolbar { @media (min-height: 750px) { .ios mat-toolbar { padding-top: 30px; + min-height: 90px; height: 90px; } }