vben
2021-01-01 0419a070413be34ea5455ed955fa51d8c522da86
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#app {
  width: 100%;
  height: 100%;
}
 
// =================================
// ==============scrollbar==========
// =================================
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
 
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}
 
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}
 
::-webkit-scrollbar-thumb:hover {
  background: @border-color-dark;
}