Allow playground on lg screens not just xl

Summary: This is now possible with the changes to centering the content

Reviewed By: danielbuechele

Differential Revision: D7009506

fbshipit-source-id: e2ff11d25dd6c388c82983d615e2a4c50b992583
This commit is contained in:
Emil Sjölander
2018-02-16 06:41:58 -08:00
committed by Facebook Github Bot
parent b21dd9891a
commit c84ed90272
6 changed files with 10 additions and 10 deletions

View File

@@ -18,12 +18,12 @@ import './index.css';
export default () => (
<Page>
<Row className="playground">
<Col xl={24} lg={0} md={0} sm={0} xs={0}>
<Row className="playground-page">
<Col lg={24} md={0} sm={0} xs={0}>
<Playground height="100%" selectedNodePath={[]} persist />
</Col>
<Col xl={0} xs={24} className="error-container">
<Col lg={0} xs={24} className="error-container">
<p className="error-text">Sorry! The playground only works on larger displays currently.</p>
</Col>
</Row>