Skip to content

Instantly share code, notes, and snippets.

@HerbCaudill
Created October 7, 2020 12:29
Show Gist options
  • Save HerbCaudill/f1d1433b876da173fa672da7d59378ef to your computer and use it in GitHub Desktop.
Save HerbCaudill/f1d1433b876da173fa672da7d59378ef to your computer and use it in GitHub Desktop.
css-article-3.jsx
let styles = css`
background: lightBlue;
border: 1px solid blue;
border-radius: 2px;
@:hover {
background: darkBlue;
}
}`
<div css={styles}>...</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment