TestEShopDist/src/components/sideBar/index.module.scss

55 lines
1.1 KiB
SCSS

.sideBar_main {
display: flex;
height: 100%;
.sideBar_select {
width: 160px;
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: rgba(0, 0, 0, 0.6);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-weight: 400;
.title_con {
padding: 0 20px;
text-align: center;
// width: 74px;
@include common_ellipsis($params: 4);
}
}
.sideBar_select_title_select {
background-color: #007aff;
color: #fff;
border-radius: 0px 14px 14px 0px;
}
}
.sideBar_con {
flex: 1;
min-width: 0;
position: relative;
padding-top: 90px;
.product_class {
width: 100%;
position: absolute;
top: 0;
z-index: 999;
}
.sideBar_con_scroll {
width: 100%;
height: 100%;
}
}
}