quanyawei
2024-07-12 8321e6da34ce075e1e897b1caf3445a068380122
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);