mirror of
https://git.mirrors.martin98.com/https://github.com/infiniflow/ragflow.git
synced 2025-08-11 01:38:59 +08:00
### What problem does this PR solve? feat: Set the global scroll bar style #2247 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
parent
04de0c4cef
commit
445576ec88
@ -17,3 +17,25 @@ body {
|
||||
.ant-app {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
/* Scroll bar stylings */
|
||||
::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
|
||||
/* Track */
|
||||
::-webkit-scrollbar-track {
|
||||
background: rgb(219, 218, 218);
|
||||
}
|
||||
|
||||
/* Handle */
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: #aaaaaa;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
/* Handle on hover */
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background: #888;
|
||||
}
|
||||
|
@ -5,8 +5,6 @@
|
||||
inset-inline-start: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: unset;
|
||||
|
||||
.checkGroup {
|
||||
width: 100%;
|
||||
|
Loading…
x
Reference in New Issue
Block a user