mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
16 lines
368 B
SCSS
16 lines
368 B
SCSS
@import "../../ionic.globals";
|
|
|
|
// Modals
|
|
// --------------------------------------------------
|
|
|
|
$modal-background-color: $background-color !default;
|
|
|
|
|
|
ion-page.modal {
|
|
background-color: $modal-background-color;
|
|
z-index: $z-index-overlay;
|
|
|
|
// hidden by default to prevent flickers, the animation will show it
|
|
transform: translate3d(0px, 100%, 0px);
|
|
}
|