sass自定义滚动条样式

@mixin scrollBarStyle() {
    &::-webkit-scrollbar {
        width: 7px;
        height: 7px;
    }
    &::-webkit-scrollbar-thumb {
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 5px #9b9ba3;
        background: rgba(152, 155, 163, 0.5);
    }
}

使用:

 .test {
        overflow: auto;
        @include scrollBarStyle;
    }

 

posted @ 2019-01-22 11:57  yhQuan  阅读(1539)  评论(0编辑  收藏  举报