30 lines
540 B
SCSS
Raw Normal View History

@mixin clearfix {
&:after {
content: "";
display: table;
clear: both;
}
}
2023-06-05 11:19:27 +08:00
@mixin scrollbar {
// 整个滚动条
2023-06-05 11:19:27 +08:00
&::-webkit-scrollbar {
width: 8px;
height: 8px;
2023-06-05 11:19:27 +08:00
}
// 滚动条上的滚动滑块
2023-06-05 11:19:27 +08:00
&::-webkit-scrollbar-thumb {
border-radius: 4px;
background-color: #90939955;
2023-06-05 11:19:27 +08:00
}
&::-webkit-scrollbar-thumb:hover {
background-color: #90939977;
2023-06-05 11:19:27 +08:00
}
&::-webkit-scrollbar-thumb:active {
background-color: #90939999;
2023-06-05 11:19:27 +08:00
}
2023-06-05 11:42:59 +08:00
&::-webkit-scrollbar-corner {
background-color: transparent;
}
2023-06-05 11:19:27 +08:00
}