mirror of
https://github.com/filecoin-project/slate.git
synced 2024-12-18 14:31:44 +03:00
20 lines
403 B
JavaScript
20 lines
403 B
JavaScript
|
import * as React from "react";
|
||
|
import * as Constants from "~/common/constants";
|
||
|
|
||
|
import { css } from "@emotion/react";
|
||
|
|
||
|
const STYLES_PAGE_CONTENT = css`
|
||
|
width: 100%;
|
||
|
${"" /* max-width: 1074px;
|
||
|
padding: 0px 24px; */}
|
||
|
max-width: 1024px;
|
||
|
padding: 0px;
|
||
|
margin: 0 auto;
|
||
|
`;
|
||
|
|
||
|
export const SceneContent = (props) => (
|
||
|
<div css={STYLES_PAGE_CONTENT} {...props} />
|
||
|
);
|
||
|
|
||
|
export default SceneContent;
|