You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
442 B
25 lines
442 B
import React from 'react'
|
|
import { Flex } from 'rebass'
|
|
|
|
/**
|
|
* @render react
|
|
* @name Page
|
|
* @example
|
|
* <Page>Some content</Page>
|
|
*/
|
|
const Page = props => (
|
|
<Flex
|
|
{...props}
|
|
as="article"
|
|
alignItems="stretch"
|
|
bg="darkestBackground"
|
|
css={{
|
|
'min-height': '700px',
|
|
'min-width': '950px',
|
|
'overflow-y': 'hidden',
|
|
'box-shadow': '0 3px 4px 0 rgba(30, 30, 30, 0.5)'
|
|
}}
|
|
/>
|
|
)
|
|
|
|
export default Page
|
|
|