/** * @see https://css-tricks.com/custom-scrollbars-in-webkit/ */ @mixin scrollbars($size, $foreground-color, $background-color: mix($foreground-color, white, 50%)) { // For Google Chrome &::-webkit-scrollbar { width: $size; height: $size; } &::-webkit-scrollbar-thumb { background: $foreground-color; border-radius: 20px; } &::-webkit-scrollbar-track { background: $background-color; background-image: $background-color; } // For Internet Explorer & { scrollbar-face-color: $foreground-color; scrollbar-track-color: $background-color; } }