diff options
author | Brandon Millman <brandon.millman@gmail.com> | 2018-11-27 18:00:32 +0800 |
---|---|---|
committer | Brandon Millman <brandon.millman@gmail.com> | 2018-11-29 02:59:54 +0800 |
commit | 16ddd21a5f418cb1e421657a903c3aaf8064b62a (patch) | |
tree | 863e1a3cf9c0f7269a41c7c75e55b56d2b51b1ed /packages/website/ts/pages/instant/instant.tsx | |
parent | 6c43fa8f7253083bb5e50a3f8940f35d105c8bf1 (diff) | |
download | dexon-0x-contracts-16ddd21a5f418cb1e421657a903c3aaf8064b62a.tar.gz dexon-0x-contracts-16ddd21a5f418cb1e421657a903c3aaf8064b62a.tar.zst dexon-0x-contracts-16ddd21a5f418cb1e421657a903c3aaf8064b62a.zip |
feat(website): instant features section
Diffstat (limited to 'packages/website/ts/pages/instant/instant.tsx')
-rw-r--r-- | packages/website/ts/pages/instant/instant.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/website/ts/pages/instant/instant.tsx b/packages/website/ts/pages/instant/instant.tsx index 87d6a64d4..eaaeb1689 100644 --- a/packages/website/ts/pages/instant/instant.tsx +++ b/packages/website/ts/pages/instant/instant.tsx @@ -47,14 +47,14 @@ export class Instant extends React.Component<InstantProps, InstantState> { <TopBar blockchainIsLoaded={false} location={this.props.location} - style={{ backgroundColor: colors.instantBackground, position: 'relative' }} + style={{ backgroundColor: colors.instantPrimaryBackground, position: 'relative' }} translate={this.props.translate} isNightVersion={true} /> - <Container backgroundColor={colors.instantBackground} /> + <Container backgroundColor={colors.instantPrimaryBackground} /> <Introducing0xInstant /> <Screenshots /> - <Features /> + <Features screenWidth={this.props.screenWidth} /> <Footer translate={this.props.translate} dispatcher={this.props.dispatcher} /> </Container> ); |