18 lines
336 B
SCSS
18 lines
336 B
SCSS
@mixin inset($top, $right, $bottom, $left) {
|
|
top: $top;
|
|
right: $right;
|
|
bottom: $bottom;
|
|
left: $left;
|
|
}
|
|
|
|
@mixin scrollbar() {
|
|
&::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
background-color: rgba(168, 168, 168, 0.9);
|
|
border-radius: 4px;
|
|
}
|
|
} |