feat: 系统内的滚动条宽度用全局变量统一控制

This commit is contained in:
dataeaseShu 2024-11-26 17:59:46 +08:00
parent b0fa270a4b
commit 9366e2e4de

View File

@ -616,5 +616,28 @@ strong {
}
.canvas_keep-size {
overflow-x: auto!important;
overflow-x: auto !important;
}
::-webkit-scrollbar-thumb {
border-radius: 4px;
background: #8b8b8b;
}
::-webkit-scrollbar {
width: 8px !important;
height: 8px !important;
}
.ed-scrollbar__thumb {
background: #8b8b8b !important;
opacity: 1 !important;
}
.ed-scrollbar__bar.is-vertical {
width: 8px !important;
}
.ed-scrollbar__bar.is-horizontal {
height: 8px !important;
}