45 lines
800 B
Plaintext
45 lines
800 B
Plaintext
#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;
|
|
}
|
|
|
|
// =================================
|
|
// ==============nprogress==========
|
|
// =================================
|
|
#nprogress {
|
|
pointer-events: none;
|
|
|
|
.bar {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 99999;
|
|
width: 100%;
|
|
height: 2px;
|
|
background-color: @primary-color;
|
|
opacity: 0.75;
|
|
}
|
|
}
|