Skip to content

Instantly share code, notes, and snippets.

@ruohki
Created March 27, 2018 21:40
Show Gist options
  • Save ruohki/bd10e3add9cc7ac7c5a283789ffc88e4 to your computer and use it in GitHub Desktop.
Save ruohki/bd10e3add9cc7ac7c5a283789ffc88e4 to your computer and use it in GitHub Desktop.
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