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

13 lines
227 B
TypeScript

import styled from 'styled-components';
import { media } from 'ts/variables';
const Breakout = styled.div`
${media.small`
margin-left: -2.5rem;
width: calc(100% + 5rem);
`};
`;
export default Breakout;