mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
* feat(modal): add css vars * add more css vars * add docs * add background * fix e2e test
17 lines
430 B
SCSS
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));
|
|
}
|