ran-boilerplate
Version:
React . Apollo (GraphQL) . Next.js Toolkit
19 lines (14 loc) • 298 B
JavaScript
import styled from 'styled-components';
import { A } from '../Theme';
// eslint-disable-next-line import/prefer-default-export
export const Section = styled.section`
padding: 10px 15px;
padding-bottom: 20px;
> h1 {
margin-top: 0;
}
> p {
font-size: 17px;
}
`;
export { A };