Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/resources/scripts/components/elements/ContentContainer.tsx
7461 views
1
import styled from 'styled-components/macro';
2
import { breakpoint } from '@/theme';
3
import tw from 'twin.macro';
4
5
const ContentContainer = styled.div`
6
max-width: 1200px;
7
${tw`mx-4`};
8
9
${breakpoint('xl')`
10
${tw`mx-auto`};
11
`};
12
`;
13
ContentContainer.displayName = 'ContentContainer';
14
15
export default ContentContainer;
16
17