12345678910111213141516171819202122
  1. @import "../../themes/ionic.globals.ios";
  2. // iOS Modals
  3. // --------------------------------------------------
  4. /// @prop - Background color for the modal
  5. $modal-ios-background-color: $background-ios-color !default;
  6. /// @prop - Border radius for the modal
  7. $modal-ios-border-radius: 10px !default;
  8. .ios .modal-wrapper {
  9. // hidden by default to prevent flickers, the animation will show it
  10. @include transform(translate3d(0, 100%, 0));
  11. @media only screen and (min-width: $modal-inset-min-width) and (min-height: $modal-inset-min-height-small) {
  12. @include border-radius($modal-ios-border-radius);
  13. overflow: hidden;
  14. }
  15. }