wip migration
This commit is contained in:
17
src/components/container.js
Normal file
17
src/components/container.js
Normal 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
|
||||
Reference in New Issue
Block a user