Created
March 27, 2018 21:40
-
-
Save ruohki/bd10e3add9cc7ac7c5a283789ffc88e4 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
export const ScrollContainer = styled.div` | |
${({ height}) => `height: ${height};`} | |
overflow-y: scroll; | |
&::-webkit-scrollbar { | |
width: 10px; | |
background-color: rgba(0,0,0,0); | |
-webkit-border-radius: 100px; | |
} | |
&::-webkit-scrollbar:hover { | |
background-color: rgba(255, 255, 255, 0.04); | |
} | |
&::-webkit-scrollbar-thumb:vertical { | |
background: rgba(255,255,255,0.1); | |
-webkit-border-radius: 100px; | |
background-clip: padding-box; | |
border: 2px solid rgba(0, 0, 0, 0); | |
min-height: 10px; | |
} | |
&::-webkit-scrollbar-thumb:vertical:active { | |
background: rgba(255,255,255,0.3); | |
-webkit-border-radius: 100px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment