18 lines
251 B
JavaScript
18 lines
251 B
JavaScript
// @flow
|
|
import styled from 'styled-components';
|
|
|
|
const Hero = styled.div`
|
|
width: 100%;
|
|
height: 70vh;
|
|
min-height: 400px;
|
|
max-height: 600px;
|
|
padding: 6em 2em 0;
|
|
text-align: center;
|
|
|
|
h1 {
|
|
font-size: 2.5em;
|
|
}
|
|
`;
|
|
|
|
export default Hero;
|