mirror of
https://github.com/continew-org/continew-admin-ui.git
synced 2025-11-10 02:57:12 +08:00
19 lines
407 B
SCSS
19 lines
407 B
SCSS
@mixin scrollbar($size: 6px, $color: #d9d9d9) {
|
|
&::-webkit-scrollbar-thumb {
|
|
background-color: $color;
|
|
border-radius: $size;
|
|
}
|
|
&::-webkit-scrollbar-thumb:hover {
|
|
background-color: $color;
|
|
border-radius: $size;
|
|
}
|
|
&::-webkit-scrollbar {
|
|
width: $size;
|
|
height: $size;
|
|
}
|
|
&::-webkit-scrollbar-track-piece {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
border-radius: 0;
|
|
}
|
|
}
|