@mixin scrollbar($size: 7px, $color: rgba(0, 0, 0, 0.5)) { scrollbar-color: $color transparent; scrollbar-width: thin; &::-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: rgb(0 0 0 / 0%); border-radius: 0; } }