* 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
13 lines
227 B
TypeScript
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;
|