Created
January 17, 2018 09:19
-
-
Save mgmgpyaesonewin/4b48030ff2d59bca74e8c7fe4a896e96 to your computer and use it in GitHub Desktop.
This file contains 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
const Row = styled.div` | |
display: flex; | |
align-items: center; | |
flex-flow: row wrap; | |
padding: 16px 0 8px; | |
> * { | |
flex: 1 100%; | |
} | |
${Title} { | |
order: 1; | |
flex: 1; | |
} | |
${StepsContainer} { | |
order: 3; | |
} | |
${NavigationContainer} { | |
order: 2; | |
flex: 1; | |
} | |
${media.desktop` | |
${Title} { | |
flex: 0 224px; | |
} | |
${StepsContainer} { | |
order: 2; | |
flex: 1; | |
} | |
${NavigationContainer} { | |
order: 3; | |
flex: 1; | |
} | |
padding: 8px 0; | |
height: 48px; | |
`} | |
`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment