ragflow / web /src /global.less
balibabu
Feat: Make the scroll bar of the DatasetSettings page appear inside #3221 (#4548)
6a82296
raw
history blame contribute delete
719 Bytes
@import url(./inter.less);
html {
height: 100%;
overflow: hidden; // The content of the DatasetSettings page is too high, which will cause scroll bars to appear on the html tags. Setting the maximum height in DatasetSettings does not work either. I don't understand.
}
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;
}