material-ui
Version:
Material Design UI components built with React
17 lines (15 loc) • 437 B
text/less
.mui-overlay {
position: fixed;
height: 100%;
width: 100%;
z-index: 9;
top: 0px;
left: -100%;
background-color: rgba(0, 0, 0, 0);
.lh-transition(left 0ms @ease-out-function 400ms, background-color 400ms @ease-out-function 0ms);
&.mui-is-shown {
left: 0px;
background-color: @light-black;
.lh-transition(left 0ms @ease-out-function 0ms, background-color 400ms @ease-out-function 0ms);
}
}