Skip to content

Instantly share code, notes, and snippets.

@sht5
Created December 8, 2018 20:04
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 sht5/39f4330ca755e0073a31187979ce5f96 to your computer and use it in GitHub Desktop.
Save sht5/39f4330ca755e0073a31187979ce5f96 to your computer and use it in GitHub Desktop.
* taken from emotionJS documentation
import { jsx } from '@emotion/core'
render(
<div
css={{
color: 'darkorchid',
'@media(min-width: 420px)': {
color: 'orange'
}
}}
>
This is orange on a big screen and darkorchid on a small
screen.
</div>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment