Skip to content

Instantly share code, notes, and snippets.

@themgoncalves
Last active September 7, 2018 10:24
Show Gist options
  • Save themgoncalves/342c51dac3fa0e61b9c9a59ffc766432 to your computer and use it in GitHub Desktop.
Save themgoncalves/342c51dac3fa0e61b9c9a59ffc766432 to your computer and use it in GitHub Desktop.
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