style(样式): 添加细滚动条样式类

- 新增 scrollbar-thin 样式类用于小区域滚动
- 优化滚动条视觉效果,宽度更细更美观
This commit is contained in:
gaoziman 2025-12-22 00:09:02 +08:00
parent 249362a6eb
commit d4de4381f2

View File

@ -194,6 +194,19 @@ body {
background-color: var(--color-text-tertiary); background-color: var(--color-text-tertiary);
} }
/* 更细的滚动条 - 用于小区域 */
.scrollbar-thin::-webkit-scrollbar {
width: 4px;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, 0.15);
}
.scrollbar-thin::-webkit-scrollbar-thumb:hover {
background-color: rgba(0, 0, 0, 0.25);
}
/* ======================================== /* ========================================
动画 动画
======================================== */ ======================================== */