Files
Dan Bucholtz a6585246af feat(modal): add inset modal feature
* 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
2016-05-18 13:11:59 -05:00

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;
}
}