2019-09-17 16:20:45 +02:00
|
|
|
import styled from 'styled-components';
|
2020-04-28 15:31:43 +02:00
|
|
|
import { themePropTypes } from 'strapi-helper-plugin';
|
2019-09-17 16:20:45 +02:00
|
|
|
|
|
|
|
const Wrapper = styled.div`
|
|
|
|
min-height: 100%;
|
|
|
|
background-color: #f6f6f6;
|
|
|
|
`;
|
|
|
|
|
|
|
|
const Header = styled.div`
|
|
|
|
margin-bottom: 1.1rem;
|
|
|
|
padding-top: 2.8rem;
|
|
|
|
font-size: 18px;
|
2020-04-29 11:47:38 +02:00
|
|
|
font-weight: ${({ theme }) => theme.main.fontWeights.bold};
|
2019-09-17 16:20:45 +02:00
|
|
|
line-height: 3.6rem;
|
|
|
|
`;
|
|
|
|
|
2020-04-28 15:31:43 +02:00
|
|
|
Header.propTypes = {
|
|
|
|
...themePropTypes,
|
|
|
|
};
|
|
|
|
|
2019-09-17 16:20:45 +02:00
|
|
|
export { Header, Wrapper };
|