yangyin
2024-10-28 20d8fdf8a952b828cf20021a22ec54e863f958e1
src/theme/mixins/index.scss
@@ -36,21 +36,21 @@
// }
@mixin scrollBar {
   // 滚动条凹槽的颜色,还可以设置边框属性
   &::-webkit-scrollbar-track-piece {
      background-color: #f8f8f8;
   }
   // 滚动条的宽度
   &::-webkit-scrollbar {
      width: 9px;
      height: 9px;
   }
   // 滚动条的设置
   &::-webkit-scrollbar-thumb {
      background-color: #dddddd;
      background-clip: padding-box;
      min-height: 28px;
   }
   &::-webkit-scrollbar-thumb:hover {
      background-color: #bbb;
   }
   // &::-webkit-scrollbar-track-piece {
   //    background-color: #f8f8f8;
   // }
   // // 滚动条的宽度
   // &::-webkit-scrollbar {
   //    width: 9px;
   //    height: 9px;
   // }
   // // 滚动条的设置
   // &::-webkit-scrollbar-thumb {
   //    background-color: #dddddd;
   //    background-clip: padding-box;
   //    min-height: 28px;
   // }
   // &::-webkit-scrollbar-thumb:hover {
   //    background-color: #bbb;
   // }
}