Created
January 15, 2020 01:41
-
-
Save gavinsharp/0948b398661673134df4256ba010a0f1 to your computer and use it in GitHub Desktop.
example of styling sub-component of a styled component
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
======== Modal.js | |
export const ModalContainer = styled.div` | |
... | |
width: ... | |
` | |
export default () => { | |
... | |
<ModalContainer> | |
... | |
</ModalContainer> | |
} | |
======== TourScheduling.js | |
import { ModalContainer } from '...'; | |
const ModalStyleWrapper = styled.div` | |
${ModalContainer} { | |
@media(...) { | |
width: 1024px; | |
} | |
} | |
` | |
<ModalStyleWrapper> | |
<Modal> | |
.... | |
</Modal> | |
</ModalStyleWrapper> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment