vue-vben-admin/src/design/public.less

45 lines
800 B
Plaintext
Raw Normal View History

2020-11-25 23:20:30 +08:00
#app {
width: 100%;
height: 100%;
}
// =================================
// ==============scrollbar==========
// =================================
2020-09-28 20:19:10 +08:00
::-webkit-scrollbar {
2020-11-02 23:04:25 +08:00
width: 6px;
height: 6px;
2020-09-28 20:19:10 +08:00
}
2020-11-02 23:04:25 +08:00
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.05);
}
2020-09-28 20:19:10 +08:00
::-webkit-scrollbar-thumb {
2020-11-02 23:04:25 +08:00
background: rgba(0, 0, 0, 0.2);
2020-09-28 20:19:10 +08:00
border-radius: 4px;
box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb:hover {
background: @border-color-dark;
}
2021-01-27 21:20:21 +08:00
// =================================
// ==============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;
}
}