* fix button dimensions * fix footer hover color * breakout in trace component * fix padding on button on small screens * fix title with content on small screens * sizing adjustment in intro component * intro component adjustments * container size adjustments * meta og images * fixed gutter size * trace component fix + breakout fix * show copy button if touch device * responsive hero animation
19 lines
334 B
TypeScript
19 lines
334 B
TypeScript
import styled from 'styled-components';
|
|
|
|
import { media } from 'ts/variables';
|
|
|
|
interface ContainerProps {
|
|
wide?: boolean;
|
|
}
|
|
|
|
const Container =
|
|
styled.div <
|
|
ContainerProps >
|
|
`
|
|
max-width: 77.5rem;
|
|
margin: 0 auto;
|
|
width: ${props => (props.wide ? '100%' : 'calc(100% - 5rem)')};
|
|
`;
|
|
|
|
export default Container;
|