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