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