Skip to content

Instantly share code, notes, and snippets.

@blurpesec
Last active February 10, 2020 19:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blurpesec/5c5773bbb6832ba7c564ecd5564430dc to your computer and use it in GitHub Desktop.
Save blurpesec/5c5773bbb6832ba7c564ecd5564430dc to your computer and use it in GitHub Desktop.
Example panel styling
const Panel = styled('section')`
padding: 20px;
background-color: white;
`
const GrayPanel = styled(Panel)`
background-color: gray;
`
html:
<Panel>panel 1 content</Panel>
<GrayPanel>panel 2 content</GrayPanel>
<Panel>panel 3 content</Panel>
<GrayPanel>panel 4 content</GrayPanel>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment