blob: fb76c8c29562f4a234e2717473088bd7544e5567 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import styled from 'styled-components';
import { media } from 'ts/variables';
const Breakout = styled.div`
${media.small`
margin-left: -30px;
width: calc(100% + 60px);
`};
`;
export default Breakout;
|