mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
30 lines
462 B
SCSS
30 lines
462 B
SCSS
|
|
// Overlay
|
|
// --------------------------------------------------
|
|
|
|
$overlay-background: #000 !default;
|
|
$overlay-opacity: 0.3 !default;
|
|
|
|
|
|
.overlay-backdrop {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: $overlay-background;
|
|
opacity: $overlay-opacity;
|
|
}
|
|
|
|
.overlay-container {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|