mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 04:53:58 +08:00
27 lines
756 B
SCSS
27 lines
756 B
SCSS
@import "../globals.core";
|
|
|
|
// iOS Cordova
|
|
// --------------------------------------------------
|
|
|
|
$cordova-ios-statusbar-padding: 20px !default;
|
|
|
|
|
|
&.platform-cordova.platform-ios {
|
|
|
|
ion-navbar-section {
|
|
height: calc(#{$toolbar-wp-height} + #{$cordova-ios-statusbar-padding});
|
|
min-height: calc(#{$toolbar-wp-height} + #{$cordova-ios-statusbar-padding});
|
|
}
|
|
|
|
ion-navbar,
|
|
ion-app > ion-toolbar:first-child,
|
|
ion-menu > ion-toolbar:first-child,
|
|
ion-page.modal > ion-toolbar:first-child {
|
|
padding-top: calc(#{$toolbar-wp-padding} + #{$cordova-ios-statusbar-padding});
|
|
|
|
height: calc(#{$toolbar-wp-height} + #{$cordova-ios-statusbar-padding});
|
|
min-height: calc(#{$toolbar-wp-height} + #{$cordova-ios-statusbar-padding});
|
|
}
|
|
|
|
}
|