blob: 505d8de41ea1b1b1035be04b69a9411100dbedf2 (
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 { Breakout };
|