mirror of
https://github.com/strapi/strapi.git
synced 2025-08-14 19:56:41 +00:00
17 lines
291 B
JavaScript
17 lines
291 B
JavaScript
![]() |
import styled from 'styled-components';
|
||
|
|
||
|
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: 700;
|
||
|
line-height: 3.6rem;
|
||
|
`;
|
||
|
|
||
|
export { Header, Wrapper };
|