9 lines
181 B
React
9 lines
181 B
React
|
import React from 'react';
|
||
|
import styled from 'styled-components';
|
||
|
import { remSize } from '../../theme';
|
||
|
|
||
|
export default styled.div`
|
||
|
z-index: 0;
|
||
|
margin-top: ${remSize(16)};
|
||
|
`;
|