mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
- remove scss-lint and sass-lint - add stylelint and stylelint-order packages and configuration - update all *.scss files to new syntax fixes #14805
18 lines
452 B
SCSS
18 lines
452 B
SCSS
@import "./modal";
|
|
@import "./modal.ios.vars";
|
|
|
|
// iOS Modals
|
|
// --------------------------------------------------
|
|
|
|
.modal-wrapper-ios {
|
|
// hidden by default to prevent flickers, the animation will show it
|
|
|
|
@include transform(translate3d(0, 100%, 0));
|
|
|
|
@media only screen and (min-width: $modal-inset-min-width) and (min-height: $modal-inset-min-height-small) {
|
|
@include border-radius($modal-ios-border-radius);
|
|
|
|
overflow: hidden;
|
|
}
|
|
}
|