Skip to content

Instantly share code, notes, and snippets.

@SanderSpies
Created April 2, 2015 15:03
Show Gist options
  • Save SanderSpies/b3218e861e12ed6477eb to your computer and use it in GitHub Desktop.
Save SanderSpies/b3218e861e12ed6477eb to your computer and use it in GitHub Desktop.
React Style Syntax with media query example
var ApplicationStyles = StyleSheet.create`
.normalStyle {
background-color: white;
font-size: 10pt;
padding: 1em;
margin: 10px;
}
.childStyle {
margin-right: 0.5em
}
.lastChildStyle {
margin-right: 0
}
@media screen and (min-width: 800px) {
.normalStyle {
background-color: purple;
}
.childStyle {
margin-left: 50
}
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment