August Skare 0e3cd82348
Fixes/august (#12)
* 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
2018-10-29 08:15:20 +00:00

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;