You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
931 B
50 lines
931 B
#app { |
|
width: 100%; |
|
height: 100%; |
|
} |
|
|
|
// ================================= |
|
// ==============scrollbar========== |
|
// ================================= |
|
|
|
::-webkit-scrollbar { |
|
width: 7px; |
|
height: 8px; |
|
} |
|
|
|
// ::-webkit-scrollbar-track { |
|
// background: transparent; |
|
// } |
|
|
|
::-webkit-scrollbar-track { |
|
background-color: rgb(0 0 0 / 5%); |
|
} |
|
|
|
::-webkit-scrollbar-thumb { |
|
// background: rgba(0, 0, 0, 0.6); |
|
background-color: rgb(144 147 153 / 30%); |
|
// background-color: rgba(144, 147, 153, 0.3); |
|
border-radius: 2px; |
|
box-shadow: inset 0 0 6px rgb(0 0 0 / 20%); |
|
} |
|
|
|
::-webkit-scrollbar-thumb:hover { |
|
background-color: @border-color-dark; |
|
} |
|
|
|
// ================================= |
|
// ==============nprogress========== |
|
// ================================= |
|
#nprogress { |
|
pointer-events: none; |
|
|
|
.bar { |
|
position: fixed; |
|
top: 0; |
|
left: 0; |
|
z-index: 99999; |
|
width: 100%; |
|
height: 2px; |
|
opacity: 0.75; |
|
} |
|
}
|
|
|