Created
April 2, 2015 15:03
-
-
Save SanderSpies/b3218e861e12ed6477eb to your computer and use it in GitHub Desktop.
React Style Syntax with media query example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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