css 隐藏滚动条

/* component: node-list */
.node-list {
    width: 12.5%; max-height: 100%;
    /* 隐藏滚动条 */
    overflow-x: hidden; 
    /* background-color: tomato;  */
}
.node-list::-webkit-scrollbar {
    display: none;
}