44 lines
1.1 KiB
SCSS
44 lines
1.1 KiB
SCSS
.sideBar_main{
|
|
display: flex;
|
|
height: 100%;
|
|
.sideBar_select{
|
|
width: 150px;
|
|
height: 100%;
|
|
background-color: #eaeaea;
|
|
border-radius: 0 10px 10px 0;
|
|
::-webkit-scrollbar {
|
|
display:none;
|
|
width:0;
|
|
height:0;
|
|
color:transparent;
|
|
}
|
|
.sideBar_select_title{
|
|
height: 100px;
|
|
width: 100%;
|
|
font-size: $font_size;
|
|
color: #727272;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-weight: 400;
|
|
.title_con{
|
|
width: 74px;
|
|
@include common_ellipsis($params:4);
|
|
}
|
|
|
|
}
|
|
.sideBar_select_title_select{
|
|
background-color: $color_bg_one;
|
|
color: $color_font_one;
|
|
}
|
|
}
|
|
.sideBar_con{
|
|
flex: 1;
|
|
.sideBar_con_scroll{
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
} |