aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/components/Container.tsx
blob: d6df7a0b4456c3779df83b36ae8dfef7a34c5481 (plain) (blame)
1
2
3
4
5
6
7
8
9
import styled from 'styled-components';

const Container = styled.div`
    max-width: 77.5rem;
    width: calc(100% - 3.75rem);
    margin: 0 auto;
`;

export default Container;