mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
26 lines
402 B
SCSS
26 lines
402 B
SCSS
@import "../../globals.core";
|
|
|
|
// Backdrop
|
|
// --------------------------------------------------
|
|
|
|
$backdrop-color: #000 !default;
|
|
|
|
ion-backdrop {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: $z-index-backdrop;
|
|
display: block;
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
background-color: $backdrop-color;
|
|
opacity: .01;
|
|
transform: translateZ(0);
|
|
}
|
|
|
|
ion-backdrop.hide-backdrop {
|
|
display: none;
|
|
}
|