structure adjustment
This commit is contained in:
18
lib/ui/css/functions/func.scss
Normal file
18
lib/ui/css/functions/func.scss
Normal file
@ -0,0 +1,18 @@
|
||||
@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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user