Files
weiyu/deploy/server/agenticflow/assets/css/scrollbar.css
2025-02-14 23:56:02 +08:00

21 lines
532 B
CSS
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/* 美化windows滚动条, TODO: 待完善参考mac scroll是不占用宽度的漂浮在上方 */
/* https://www.51cto.com/article/716443.html */
body {
margin: 0;
overflow: overlay;
}
::-webkit-scrollbar {
background-color: transparent;
width: 12px;
}
::-webkit-scrollbar-thumb {
background-color: transparent;
border-radius: 8px;
background-clip: content-box;
border: 2px solid transparent;
}
body[scroll]::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb:hover {
background-color: rgba(0, 0, 0, 0.5);
}