vben
2021-02-09 23657547ab28fa65c2369ded8e73929dee76c750
提交 | 用户 | age
e5f8ce 1 #app {
V 2   width: 100%;
3   height: 100%;
4 }
5
6 // =================================
7 // ==============scrollbar==========
8 // =================================
2f6253 9 ::-webkit-scrollbar {
96c10d 10   width: 6px;
V 11   height: 6px;
2f6253 12 }
13
96c10d 14 ::-webkit-scrollbar-track {
V 15   background: rgba(0, 0, 0, 0.05);
16 }
2f6253 17
18 ::-webkit-scrollbar-thumb {
96c10d 19   background: rgba(0, 0, 0, 0.2);
2f6253 20   border-radius: 4px;
21   box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
22 }
23
24 ::-webkit-scrollbar-thumb:hover {
25   background: @border-color-dark;
26 }
733afd 27
V 28 // =================================
29 // ==============nprogress==========
30 // =================================
31 #nprogress {
32   pointer-events: none;
33
34   .bar {
35     position: fixed;
36     top: 0;
37     left: 0;
38     z-index: 99999;
39     width: 100%;
40     height: 2px;
41     background-color: @primary-color;
42     opacity: 0.75;
43   }
44 }