Skip to content

Instantly share code, notes, and snippets.

@chhpt
Created May 13, 2018 07:17
Show Gist options
  • Save chhpt/bd77377d9fa70f5bd55b9aac318c4e81 to your computer and use it in GitHub Desktop.
Save chhpt/bd77377d9fa70f5bd55b9aac318c4e81 to your computer and use it in GitHub Desktop.
滚动条自定义
@mixin thinScrollBar {
&::-webkit-scrollbar {
visibility: hidden;
width: 0.4rem;
height: 0.4rem;
border: 1px solid $border-color;
}
// &:hover::-webkit-scrollbar {
// visibility: visible;
// }
// &:hover::-webkit-scrollbar-thumb {
// box-shadow: inset 0 0 20px rgba(4, 24, 53, 0.4);
// border-radius: 0.4rem;
// }
// &:hover::-webkit-scrollbar-track {
// box-shadow: inset 0 0 6px #fff;
// }
&:hover::-webkit-scrollbar-thumb {
box-shadow: inset 0 0 20px rgba(4, 24, 53, 0.4);
border-radius: 0.4rem;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment