Skip to content

Instantly share code, notes, and snippets.

@wewindy
Created December 21, 2021 10:27
Show Gist options
  • Select an option

  • Save wewindy/f74830f35850d39161ddd5fa8cbbd627 to your computer and use it in GitHub Desktop.

Select an option

Save wewindy/f74830f35850d39161ddd5fa8cbbd627 to your computer and use it in GitHub Desktop.
prettyScrollBar
/* 滚动槽 */
::-webkit-scrollbar {
width : .5rem;
height: .5rem;
}
::-webkit-scrollbar-track {
border-radius : .25rem;
background : rgba(0, 0, 0, 0.06);
box-shadow : inset 0 0 .4rem rgba(0, 0, 0, 0.08);
-webkit-box-shadow: inset 0 0 .4rem rgba(0, 0, 0, 0.08);
}
/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
border-radius : .25rem;
background : rgba(0, 0, 0, 0.12);
box-shadow : inset 0 0 .4rem rgba(0, 0, 0, 0.2);
-webkit-box-shadow: inset 0 0 .4rem rgba(0, 0, 0, 0.2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment