17 lines
532 B
SCSS
17 lines
532 B
SCSS
|
// ==========================================================================
|
||
|
// Custom scrollbars
|
||
|
// ==========================================================================
|
||
|
|
||
|
@mixin custom-scrollbar($width: .8em, $track: rgba(217, 217, 217, .5), $thumb: rgba(184, 184, 184, .5)){
|
||
|
::-webkit-scrollbar {
|
||
|
width: $width;
|
||
|
}
|
||
|
::-webkit-scrollbar-track {
|
||
|
background-color: $track;
|
||
|
}
|
||
|
::-webkit-scrollbar-thumb {
|
||
|
background: $thumb;
|
||
|
box-shadow: inset .05em .05em 0 rgba(0, 0, 0, .1), inset 0 -.05em 0 rgba(0, 0, 0, .07);
|
||
|
}
|
||
|
}
|