misc_pterodactyl-panel/resources/scripts/components/elements/ContentContainer.tsx

13 lines
271 B
TypeScript

import styled from 'styled-components';
import { breakpoint } from 'styled-components-breakpoint';
const ContentContainer = styled.div`
max-width: 1200px;
${tw`mx-4`};
${breakpoint('xl')`
${tw`mx-auto`};
`};
`;
export default ContentContainer;