blob: 39998e9c77e177ca7f0658f010ed6df6d1a1eb69 (
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: -2.5rem;
width: calc(100% + 5rem);
`};
`;
export default Breakout;
|