mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 22:17:40 +08:00

* feat(inset-modal): add dynamic component loading functionality for inset modal * style(modal): moved border-radius to a variable, added an additional data binding activity in moved border-radius to a variable, added an additional data binding activity in an e2e test * refactor(modal): refactor sass and remove some unnecessary stuff * refactor(modal): migrate to Angular RC import syntax Closes #5423
20 lines
453 B
SCSS
20 lines
453 B
SCSS
@import "../../globals.ios";
|
|
|
|
// iOS Modals
|
|
// --------------------------------------------------
|
|
|
|
$modal-ios-background-color: $background-ios-color !default;
|
|
$modal-ios-border-radius: 5px !default;
|
|
|
|
.modal ion-page {
|
|
background-color: $modal-ios-background-color;
|
|
}
|
|
|
|
.modal-wrapper {
|
|
@media only screen and (min-width: 768px) and (min-height: 600px) {
|
|
overflow: hidden;
|
|
|
|
border-radius: $modal-ios-border-radius;
|
|
}
|
|
}
|