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