Files
edx-platform/cms/static/sass/elements/_drawer.scss

31 lines
425 B
SCSS

// studio - elements - side drawers
// ====================
.drawer-cover {
@extend %ui-depth3;
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
}
.drawer {
@extend %ui-depth4;
display: none;
position: fixed;
top: 0;
right: 0;
width: 33.33vw;
height: 100vh;
background-color: $gray-l4;
}
body.drawer-open {
overflow: hidden;
}