张卓
2022-09-20 5aead44ba1be31db948dfd8362c2bfcbedbbce29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.scrollbar-mixin(@enabled) when(@enabled=true) {
  body::-webkit-scrollbar {
    height: @scrollbar-width;
    width: @scrollbar-height;
  }
 
  body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 @scrollbar-width @scrollbar-track-color;
  }
 
  body::-webkit-scrollbar-thumb {
    background-color: @scrollbar-thumb-color;
    outline: 1px solid #333;
  }
}
 
.scrollbar-mixin(@scrollbar-enabled);