THU Hole react frontend
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

40 lines
698 B

.sidebar-shadow {
opacity: 0;
background-color: black;
pointer-events: none;
transition: opacity 200ms ease-out;
position: fixed;
left: 0;
top: 0;
height: 100%;
width: 100%;
z-index: 2;
}
.sidebar-on .sidebar-shadow {
opacity: .3;
pointer-events: initial;
}
.sidebar {
transition: left 200ms ease-out;
position: fixed;
left: 100%;
top: 0;
height: 100%;
width: calc(100% - 700px);
padding: 1em;
background-color: #fff;
z-index: 3;
overflow-y: auto;
}
.sidebar-on .sidebar {
left: 700px;
}
.sidebar-flow-item {
display: block;
}
.sidebar-flow-item .box {
margin: 1em;
width: calc(100% - 2em);
}