Files
ionic-framework/core/src/components/modal/modal.ios.scss
Manu MA 235c6859d2 feat(modal): add css vars (#16605)
* feat(modal): add css vars

* add more css vars

* add docs

* add background

* fix e2e test
2018-12-06 15:36:09 +01:00

17 lines
430 B
SCSS

@import "./modal";
@import "./modal.ios.vars";
// iOS Modals
// --------------------------------------------------
@media only screen and (min-width: $modal-inset-min-width) and (min-height: $modal-inset-min-height-small) {
:host {
--border-radius: #{$modal-ios-border-radius};
}
}
.modal-wrapper {
// hidden by default to prevent flickers, the animation will show it
@include transform(translate3d(0, 100%, 0));
}