HichamELBSI 43ee492fcb Init Users & Permissions settings section
Signed-off-by: HichamELBSI <elabbassih@gmail.com>
2020-08-03 17:11:58 +02:00

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 };