wip migration

This commit is contained in:
Kyle Gill
2019-05-15 17:40:27 -06:00
parent 24a3eb96f2
commit 83b1e6c900
23 changed files with 333 additions and 270 deletions

View File

@@ -0,0 +1,17 @@
import React from "react"
import styled from "@emotion/styled"
import { SIZES } from "../styles/constants"
const Container = styled.div`
display: flex;
flex-direction: column;
height: 100%;
margin: 0 auto;
padding: 0 10px;
max-width: ${SIZES.maxWidth};
min-height: calc(100vh - 60px);
background-color: ${props => props.theme.colors.bodyBackground};
`
export default Container