Update content pages

This commit is contained in:
Tom Moor
2018-07-11 20:57:27 -07:00
parent 19a328ebeb
commit 8f08f8dabf
8 changed files with 44 additions and 29 deletions

View File

@ -2,6 +2,7 @@
import * as React from 'react';
import { Helmet } from 'react-helmet';
import styled from 'styled-components';
import breakpoint from 'styled-components-breakpoint';
import { TopNavigation, BottomNavigation } from './Navigation';
import Analytics from '../../../shared/components/Analytics';
import globalStyles from '../../../shared/styles/globals';
@ -75,6 +76,10 @@ function Layout({ children }: Props) {
const Body = styled.body`
padding: 0 30px;
${breakpoint('tablet')`
padding: 0;
`};
`;
export default Layout;