Skip to content

Instantly share code, notes, and snippets.

@mgmgpyaesonewin
Created January 3, 2018 11:48
Show Gist options
  • Save mgmgpyaesonewin/86676955e25da437fa2cf9d31e4a5da1 to your computer and use it in GitHub Desktop.
Save mgmgpyaesonewin/86676955e25da437fa2cf9d31e4a5da1 to your computer and use it in GitHub Desktop.
Sample Hover in SCSS with styled component react example
const List = styled.div`
border-bottom: 1px solid rgba(120, 130, 140, 0.13);
padding: 10px 15px;
&:last-child {
border: none;
}
&:hover {
background: #f7fafc;
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment