This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
outline/server/pages/components/Header.js
2017-11-28 22:46:26 -08:00

23 lines
365 B
JavaScript

// @flow
import styled from 'styled-components';
import { color } from '../../../shared/styles/constants';
const Header = styled.div`
width: 100%;
padding: 0 2em 2em;
text-align: center;
background: ${color.slateLight};
margin-bottom: 2em;
p {
max-width: 720px;
margin: 0 auto;
}
h1 {
font-size: 2.5em;
}
`;
export default Header;