Files
2018-09-01 17:23:03 +02:00

30 lines
421 B
SCSS

@import "./backdrop.vars";
// Backdrop
// --------------------------------------------------
:host {
@include position(0, 0, 0, 0);
display: block;
position: absolute;
transform: translateZ(0);
contain: strict;
cursor: pointer;
opacity: .01;
touch-action: none;
z-index: $z-index-backdrop;
}
:host(.backdrop-hide) {
background: transparent;
}
:host(.backdrop-no-tappable) {
cursor: auto;
}