36 lines
666 B
SCSS
36 lines
666 B
SCSS
.sidebar {
|
|
padding-top: 64px;
|
|
background-color: #fff;
|
|
max-width: 210px;
|
|
height: 100%;
|
|
width: 200px;
|
|
position: fixed!important;
|
|
z-index: 1;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.sidebar__large {
|
|
background-color: #eeeeee !important;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.sidebar__over {
|
|
z-index: 1102;
|
|
padding-top: 0;
|
|
background-color: #ffffff;
|
|
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
|
|
z-index: 1111;
|
|
}
|
|
|
|
.sidebar__title {
|
|
font-size: 20px;
|
|
font-weight: 500;
|
|
padding-right: 16px;
|
|
font-family: Roboto, sans-serif;
|
|
position: relative;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
margin-left: 15px;
|
|
}
|