mirror of
https://git.mirrors.martin98.com/https://github.com/infiniflow/ragflow.git
synced 2025-07-25 06:24:30 +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)
42 lines
498 B
Plaintext
42 lines
498 B
Plaintext
@import url(./inter.less);
|
|
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
font-family: Inter;
|
|
margin: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
#root {
|
|
height: 100%;
|
|
}
|
|
|
|
.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;
|
|
}
|