2020-07-28 14:33:38 +00:00
|
|
|
import React from 'react';
|
|
|
|
import styled from 'styled-components';
|
|
|
|
import { remSize } from '../../theme';
|
|
|
|
|
|
|
|
|
|
|
|
export default styled.div`
|
2020-08-04 13:55:16 +00:00
|
|
|
/* Dashboard Styles */
|
2020-07-28 14:33:38 +00:00
|
|
|
z-index: 0;
|
2020-08-11 19:45:32 +00:00
|
|
|
margin-top: ${props => remSize(props.slimheader ? 49 : 68)};
|
2020-07-28 14:33:38 +00:00
|
|
|
`;
|