12 lines
217 B
SCSS
12 lines
217 B
SCSS
@mixin scrollbar() {
|
|
&::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
background-color: rgba(168, 168, 168, 0.9);
|
|
border-radius: 4px;
|
|
}
|
|
}
|