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.
outline/server/pages/components/Hero.js

15 lines
195 B
JavaScript

// @flow
import styled from 'styled-components';
const Hero = styled.div`
width: 100%;
padding: 6em 2em 8em;
text-align: center;
h1 {
font-size: 2.5em;
}
`;
export default Hero;