mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-15 14:17:54 +03:00
17 lines
280 B
SCSS
17 lines
280 B
SCSS
@mixin mdb-layout-overlay-backdrop-in() {
|
|
|
|
> .mdb-layout-backdrop {
|
|
.in {
|
|
visibility: visible;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
@supports (pointer-events: auto) {
|
|
&.in {
|
|
pointer-events: auto;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
}
|