2020-07-03 20:55:33 +00:00
|
|
|
import styled from 'styled-components/macro';
|
|
|
|
import { breakpoint } from '@/theme';
|
|
|
|
import tw from 'twin.macro';
|
2020-04-17 18:07:32 +00:00
|
|
|
|
|
|
|
const ContentContainer = styled.div`
|
|
|
|
max-width: 1200px;
|
|
|
|
${tw`mx-4`};
|
|
|
|
|
|
|
|
${breakpoint('xl')`
|
|
|
|
${tw`mx-auto`};
|
|
|
|
`};
|
|
|
|
`;
|
2020-07-03 20:55:33 +00:00
|
|
|
ContentContainer.displayName = 'ContentContainer';
|
2020-04-17 18:07:32 +00:00
|
|
|
|
|
|
|
export default ContentContainer;
|