Add changelog
This commit is contained in:
22
server/pages/components/Header.js
Normal file
22
server/pages/components/Header.js
Normal file
@ -0,0 +1,22 @@
|
||||
// @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;
|
Reference in New Issue
Block a user