1 | @import "../themes/ionic.globals.md";
|
2 |
|
3 | // Material Design on iOS with Cordova
|
4 | // --------------------------------------------------
|
5 |
|
6 | /// @prop - Height of the Statusbar
|
7 | $cordova-md-statusbar-padding: 20px !default;
|
8 |
|
9 | /// @prop - The breakpoint when a modal becomes inset
|
10 | $cordova-md-statusbar-padding-modal-max-width: $cordova-statusbar-padding-modal-max-width !default;
|
11 |
|
12 | // Cordova mixins are in the main cordova file
|
13 | .md {
|
14 | @include statusbar-padding($toolbar-md-height, $toolbar-md-padding, $content-md-padding, $cordova-md-statusbar-padding, $cordova-md-statusbar-padding-modal-max-width);
|
15 |
|
16 | @include footer-safe-area($toolbar-md-height, $toolbar-md-padding);
|
17 | }
|
18 |
|