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