@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;
    }

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-13
  • 2022-12-23
  • 2022-12-23
  • 2021-10-04
猜你喜欢
  • 2022-02-09
  • 2022-01-11
  • 2021-04-15
  • 2021-08-08
  • 2021-08-30
  • 2021-10-21
相关资源
相似解决方案