Created
May 13, 2018 07:17
-
-
Save chhpt/bd77377d9fa70f5bd55b9aac318c4e81 to your computer and use it in GitHub Desktop.
滚动条自定义
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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