mirror of
https://github.com/strapi/strapi.git
synced 2025-08-12 18:53:23 +00:00
22 lines
434 B
JavaScript
22 lines
434 B
JavaScript
import styled from 'styled-components';
|
|
import { themePropTypes } from 'strapi-helper-plugin';
|
|
|
|
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;
|
|
font-weight: ${({ theme }) => theme.main.fontWeights.bold};
|
|
line-height: 3.6rem;
|
|
`;
|
|
|
|
Header.propTypes = {
|
|
...themePropTypes,
|
|
};
|
|
|
|
export { Header, Wrapper };
|