10 lines
182 B
React
10 lines
182 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(68)};
|
||
|
`;
|