.aside {
height: calc(100vh - 60px);
/* 超出屏幕进行滚动 */
overflow-y: auto;
/* background-color: #e9eef3; */
}
.aside::-webkit-scrollbar {
/* 对应纵向滚动条的宽度 */
width: 10px;
/* 对应横向滚动条的宽度 */
height: 10px;
}
/* 滚动条上的滚动滑块 */
.aside::-webkit-scrollbar-thumb {
background-color: #c6c9cf;
border-radius: 32px;
}
/* 滚动条轨道 */
.aside::-webkit-scrollbar-track {
background-color: #dbeffd;
border-radius: 32px;
}
.aside {
height: calc(100vh - 60px);
overflow-y: auto;
}
.aside::-webkit-scrollbar {
display: none;
}