修改滚动条的样式

303 阅读1分钟
.box {    overflow-y: scroll;    height: 50px;    width: 80px;    &::-webkit-scrollbar {      width: 10px;    }    &::-webkit-scrollbar-track {      background: red;      border-radius: 5px;    }    &::-webkit-scrollbar-thumb {      background: blue;      border-radius: 5px;    }    &::-webkit-scrollbar-thumb:hover {      background: yellow;    }  }