style: add styles to scroll bar (#364)

pull/366/head
LiuJiJiang 2021-10-23 23:15:32 +08:00 committed by GitHub
parent 03f5939096
commit 55727bd738
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 0 deletions

View File

@ -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;
}