tachybase_todo/packages/core/client/src/global.less

28 lines
425 B
Plaintext
Raw Normal View History

2022-03-09 20:58:11 +08:00
.win {
/* width */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #c0c0c0;
border-radius: 4px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #a8a8a8;
}
.rc-virtual-list-scrollbar-thumb {
background: #c0c0c0 !important;
}
}