refactor: optimize side bar component to make it more friendly (#230)

This commit is contained in:
Fine0830
2023-02-09 17:54:11 +08:00
committed by GitHub
parent 2b88266d67
commit 1877776720
4 changed files with 79 additions and 71 deletions

View File

@@ -197,3 +197,21 @@
box-shadow: inset 0 0 6px #ccc;
background-color: #aaa;
}
.scroll_bar_dark::-webkit-scrollbar {
width: 6px;
height: 6px;
background-color: #666;
}
.scroll_bar_dark::-webkit-scrollbar-track {
background-color: #252a2f;
border-radius: 3px;
box-shadow: inset 0 0 6px #999;
}
.scroll_bar_dark::-webkit-scrollbar-thumb {
border-radius: 3px;
box-shadow: inset 0 0 6px #888;
background-color: #999;
}