10 lines
178 B
TypeScript
10 lines
178 B
TypeScript
import styled from 'styled-components';
|
|
|
|
const Container = styled.div`
|
|
max-width: 77.5rem;
|
|
width: calc(100% - 3.75rem);
|
|
margin: 0 auto;
|
|
`;
|
|
|
|
export default Container;
|