Browse Source

style: add styles to scroll bar (#364)

pull/366/head
LiuJiJiang 3 years ago committed by GitHub
parent
commit
55727bd738
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 25
      src/styles/global.less

25
src/styles/global.less

@ -951,3 +951,28 @@ body {
transform: rotate(360deg); transform: rotate(360deg);
} }
} }
/* scroll bar style */
*::-webkit-scrollbar-track-piece{
background-color: #f8f8f8;
-webkit-border-radius: 2em;
-moz-border-radius: 2em;
border-radius: 2em;
}
*::-webkit-scrollbar{
width: 8px;
height: 8px;
}
*::-webkit-scrollbar-thumb{
background-color: #ddd;
background-clip: padding-box;
-webkit-border-radius: 2em;
-moz-border-radius: 2em;
border-radius: 2em;
}
*::-webkit-scrollbar-thumb:hover{
background-color: #bbb;
}

Loading…
Cancel
Save