FarmMapsLib/projects/common/src/fm/components/menu-background/menu-background.component.scss

18 lines
329 B
SCSS
Raw Normal View History

2020-01-08 10:37:37 +00:00
.menu-background {
display: block;
position: absolute;
top:0;
left:0;
right:0;
bottom:0;
opacity: 0;
background-color: #000000;
2020-09-29 18:57:14 +00:00
transition: opacity 0.3s ease-out;
2020-01-08 10:37:37 +00:00
pointer-events: none;
2020-01-17 16:38:53 +00:00
z-index:99;
2020-01-08 10:37:37 +00:00
}
.menu-background.show {
pointer-events: all;
opacity: 0.3;
}