Last active
September 7, 2018 10:24
-
-
Save themgoncalves/342c51dac3fa0e61b9c9a59ffc766432 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
import styled from 'styled-components'; | |
import SuperQuery from '@themgoncalves/super-query'; | |
const Title = styled.h1` | |
color: #666; | |
font-size: 16px; | |
${SuperQuery().minWidth().lg().css` | |
font-size: 20px; | |
`}; | |
${SuperQuery().minWidth().lg().and().landscape().css` | |
font-size: 26px; | |
`}; | |
`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment