cordova.md.scss 700B

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