2020-07-03 13:55:33 -07:00
|
|
|
import { breakpoint } from '@/theme';
|
2021-07-22 11:15:27 -06:00
|
|
|
import tw, { styled } from 'twin.macro';
|
2020-04-17 11:07:32 -07:00
|
|
|
|
|
|
|
const ContentContainer = styled.div`
|
|
|
|
max-width: 1200px;
|
|
|
|
${tw`mx-4`};
|
|
|
|
|
|
|
|
${breakpoint('xl')`
|
|
|
|
${tw`mx-auto`};
|
|
|
|
`};
|
|
|
|
`;
|
2020-07-03 13:55:33 -07:00
|
|
|
ContentContainer.displayName = 'ContentContainer';
|
2020-04-17 11:07:32 -07:00
|
|
|
|
|
|
|
export default ContentContainer;
|