Files
FarmMapsLib/projects/common/src/fm/components/menu-background/menu-background.component.scss
Willem Dantuma f99dfc965f
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good
Fix z-index menu overlay
2020-01-17 17:38:53 +01:00

18 lines
330 B
SCSS

.menu-background {
display: block;
position: absolute;
top:0;
left:0;
right:0;
bottom:0;
opacity: 0;
background-color: #000000;
transition: opacity 0s ease-out 1s;
pointer-events: none;
z-index:99;
}
.menu-background.show {
pointer-events: all;
opacity: 0.3;
}