aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/pages/about/about.tsx
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2017-12-18 17:28:34 +0800
committerFabio Berger <me@fabioberger.com>2017-12-18 17:28:34 +0800
commit1aed970ce3468306f3bedbfdc29669d42e487441 (patch)
tree542ef8a910e91a8bf852b937cdb5067cbac5b908 /packages/website/ts/pages/about/about.tsx
parent445ff1e28ee572236ec963a27bff227e859f685c (diff)
downloaddexon-sol-tools-1aed970ce3468306f3bedbfdc29669d42e487441.tar
dexon-sol-tools-1aed970ce3468306f3bedbfdc29669d42e487441.tar.gz
dexon-sol-tools-1aed970ce3468306f3bedbfdc29669d42e487441.tar.bz2
dexon-sol-tools-1aed970ce3468306f3bedbfdc29669d42e487441.tar.lz
dexon-sol-tools-1aed970ce3468306f3bedbfdc29669d42e487441.tar.xz
dexon-sol-tools-1aed970ce3468306f3bedbfdc29669d42e487441.tar.zst
dexon-sol-tools-1aed970ce3468306f3bedbfdc29669d42e487441.zip
standarize on `grey` over `gray` spelling and other color related fixes
Diffstat (limited to 'packages/website/ts/pages/about/about.tsx')
-rw-r--r--packages/website/ts/pages/about/about.tsx9
1 files changed, 4 insertions, 5 deletions
diff --git a/packages/website/ts/pages/about/about.tsx b/packages/website/ts/pages/about/about.tsx
index 60d8ac66d..8c512ee5c 100644
--- a/packages/website/ts/pages/about/about.tsx
+++ b/packages/website/ts/pages/about/about.tsx
@@ -1,16 +1,15 @@
import * as _ from 'lodash';
-import {colors} from 'ts/utils/colors';
import * as React from 'react';
import * as DocumentTitle from 'react-document-title';
import {Footer} from 'ts/components/footer';
import {TopBar} from 'ts/components/top_bar';
import {Profile} from 'ts/pages/about/profile';
import {ProfileInfo, Styles} from 'ts/types';
-import {configs} from 'ts/utils/configs';
+import {colors} from 'ts/utils/colors';
import {constants} from 'ts/utils/constants';
import {utils} from 'ts/utils/utils';
-const DARKEST_GRAY = colors.darkestGray;
+const DARKEST_GRAY = colors.darkestGrey;
const teamRow1: ProfileInfo[] = [
{
@@ -152,12 +151,12 @@ export class About extends React.Component<AboutProps, AboutState> {
}
public render() {
return (
- <div style={{backgroundColor: colors.lightGrey}}>
+ <div style={{backgroundColor: colors.lightestGrey}}>
<DocumentTitle title="0x About Us"/>
<TopBar
blockchainIsLoaded={false}
location={this.props.location}
- style={{backgroundColor: colors.lightGrey}}
+ style={{backgroundColor: colors.lightestGrey}}
/>
<div
id="about"