style: change the scroll bar style
This commit is contained in:
parent
16a0994522
commit
d513643f6b
|
@ -17,11 +17,27 @@ html, body {
|
|||
line-height: $default-font-line-height;
|
||||
}
|
||||
|
||||
|
||||
::selection {
|
||||
background: var(--selection-color);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
* {
|
||||
&::-webkit-scrollbar {
|
||||
width: 6px;
|
||||
}
|
||||
|
||||
&::-webkit-scrollbar-thumb {
|
||||
border-radius: 1px;
|
||||
background: rgba(0, 0, 0, 0.28)
|
||||
}
|
||||
|
||||
&::-webkit-scrollbar-track {
|
||||
background: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
ul,
|
||||
li,
|
||||
ol {
|
||||
|
|
Loading…
Reference in New Issue