Skip to content
Snippets Groups Projects
Commit 93e7cd40 authored by Bertrand Presles's avatar Bertrand Presles Committed by bpresles
Browse files

Fix iOS header CSSs overidden by Ionic's CSSs

parent 78142533
No related branches found
No related tags found
1 merge request!568Feature/ios support
......@@ -1866,16 +1866,16 @@ $ionicon-var-badge-editable: $ionicon-var-edit + "\00a0";
height: 150px;
padding-right: 0px !important;
.platform-ios & {
height: 180px;
.platform-ios.platform-cordova & {
height: calc(env(safe-area-inset-top) + 160px);
}
.hero {
height: 150px;
box-shadow: none; // not need (define in bar-header)
.platform-ios & {
height: 160px;
.platform-ios.platform-cordova & {
height: calc(env(safe-area-inset-top) + 160px);
}
.content {
......@@ -1887,8 +1887,8 @@ $ionicon-var-badge-editable: $ionicon-var-edit + "\00a0";
.has-header {
top: 150px;
.platform-ios & {
top: 180px;
.platform-ios.platform-cordova & {
top: calc(env(safe-area-inset-top) + 160px);
}
}
}
......
source diff could not be displayed: it is too large. Options to address this: view the blob.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment