chore: don't use Container in react-shared, react-docs yet

This commit is contained in:
Fabio Berger
2018-10-16 16:43:43 +01:00
parent e6e883e05a
commit 55a3bc8cb6
5 changed files with 18 additions and 68 deletions

View File

@@ -1,7 +1,6 @@
import {
colors,
constants as sharedConstants,
Container,
EtherscanLinkSuffixes,
HeaderSizes,
Link,
@@ -216,12 +215,14 @@ export class DocReference extends React.Component<DocReferenceProps, DocReferenc
<div>{typeDefs}</div>
</div>
)}
<Container
width={'100%'}
height={'1px'}
backgroundColor={colors.grey300}
marginTop={'32px'}
marginBottom={'12px'}
<div
style={{
width: '100%',
height: 1,
backgroundColor: colors.grey300,
marginTop: 32,
marginBottom: 12,
}}
/>
</div>
);