mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-26 03:31:24 +08:00
17 lines
291 B
SCSS
17 lines
291 B
SCSS
/* 全局初始化滚动条样式 */
|
|
::-webkit-scrollbar {
|
|
width: 3px;
|
|
height: 3px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--color-scrollbar-thumb);
|
|
&:hover {
|
|
background: var(--color-scrollbar-thumb-hover);
|
|
}
|
|
}
|