17 lines
291 B
JavaScript
Raw Normal View History

2019-09-17 16:20:45 +02:00
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: 600;
2019-09-17 16:20:45 +02:00
line-height: 3.6rem;
`;
export { Header, Wrapper };