mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-25 21:55:00 +00:00
chore: remove outer wrapper div
This commit is contained in:
@@ -13,56 +13,45 @@ class CodeExample extends Component {
|
||||
'&:first-child': {
|
||||
marginTop: 0,
|
||||
},
|
||||
|
||||
[media.greaterThan('xlarge')]: {
|
||||
display: 'flex',
|
||||
flexDirection: 'row',
|
||||
marginTop: 80,
|
||||
},
|
||||
|
||||
[media.lessThan('large')]: {
|
||||
display: 'block',
|
||||
},
|
||||
}}>
|
||||
<div
|
||||
css={{
|
||||
[media.greaterThan('xlarge')]: {
|
||||
display: 'flex',
|
||||
flexDirection: 'row',
|
||||
},
|
||||
{children && (
|
||||
<div
|
||||
css={{
|
||||
flex: '0 0 33%',
|
||||
|
||||
[media.lessThan('large')]: {
|
||||
display: 'block',
|
||||
},
|
||||
}}>
|
||||
{children && (
|
||||
<div
|
||||
css={{
|
||||
flex: '0 0 33%',
|
||||
[media.lessThan('xlarge')]: {
|
||||
marginBottom: 20,
|
||||
},
|
||||
|
||||
[media.lessThan('xlarge')]: {
|
||||
marginBottom: 20,
|
||||
'& h3': {
|
||||
color: colors.dark,
|
||||
maxWidth: '11em',
|
||||
paddingTop: 0,
|
||||
},
|
||||
|
||||
'& p': {
|
||||
marginTop: 15,
|
||||
marginRight: 40,
|
||||
lineHeight: 1.7,
|
||||
|
||||
[media.greaterThan('xlarge')]: {
|
||||
marginTop: 25,
|
||||
},
|
||||
|
||||
'& h3': {
|
||||
color: colors.dark,
|
||||
maxWidth: '11em',
|
||||
paddingTop: 0,
|
||||
},
|
||||
|
||||
'& p': {
|
||||
marginTop: 15,
|
||||
marginRight: 40,
|
||||
lineHeight: 1.7,
|
||||
|
||||
[media.greaterThan('xlarge')]: {
|
||||
marginTop: 25,
|
||||
},
|
||||
},
|
||||
}}>
|
||||
{children}
|
||||
</div>
|
||||
)}
|
||||
{loaded ? (
|
||||
<CodeEditor code={code} />
|
||||
) : (
|
||||
<h4>Loading code example...</h4>
|
||||
)}
|
||||
</div>
|
||||
},
|
||||
}}>
|
||||
{children}
|
||||
</div>
|
||||
)}
|
||||
{loaded ? <CodeEditor code={code} /> : <h4>Loading code example...</h4>}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user