update: 滚动条样式抽离复用

This commit is contained in:
zhuoqinglian
2026-06-29 15:42:52 +08:00
parent 799ea28d82
commit 0270de1844
7 changed files with 30 additions and 36 deletions
+14
View File
@@ -29,4 +29,18 @@ select:-webkit-autofill:focus {
.popper__arrow {
border-top-color: #e4e7ed !important;
}
}
@mixin scrollbar-style {
&::-webkit-scrollbar {
width: 6px;
}
&::-webkit-scrollbar-thumb {
background: #a1c9fd;
border-radius: 3px;
}
&::-webkit-scrollbar-track {
background: #f0f3fe;
border-radius: 3px;
}
}