Skip to content

Instantly share code, notes, and snippets.

@carlrip
Last active February 10, 2019 09:32
Show Gist options
  • Select an option

  • Save carlrip/4a5352908e7bee42e682445c9e8287af to your computer and use it in GitHub Desktop.

Select an option

Save carlrip/4a5352908e7bee42e682445c9e8287af to your computer and use it in GitHub Desktop.
Playing with styled components - nesting
const Container = styled.div`
width: 400px;
margin: 30px auto;
font-family: ${fontFamily};
font-size: ${fontSize};
color: ${gray2};
ul {
list-style: none;
padding: 0px 20px;
background-color: #fff;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-top: 3px solid ${accent1};
box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.16);
li {
padding: 10px 0px;
border-top: 1px solid ${gray5};
:first-child {
border-top: none;
}
}
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment