项目文件夹

文件
Stefan Moldovan ca24e0184d ## [2.1.0] 2018-06-13
### Bug fixing
- Card-chart fixed on Windows
- Bug fixes for responsive devices
- Small changes for components
2018-06-13 12:52:26 +03:00

17 行
376 B
SCSS

// Generates the `.in` style for the generic backdrop used components such as the drawer in overlay mode
@mixin bmd-layout-backdrop-in() {
> .bmd-layout-backdrop {
.in {
visibility: visible;
background-color: rgba(0, 0, 0, 0.5);
}
@supports (pointer-events: auto) {
&.in {
pointer-events: auto;
opacity: 1;
}
}
}
}