aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/top_bar.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/components/top_bar.tsx
parent445ff1e28ee572236ec963a27bff227e859f685c (diff)
downloaddexon-0x-contracts-1aed970ce3468306f3bedbfdc29669d42e487441.tar
dexon-0x-contracts-1aed970ce3468306f3bedbfdc29669d42e487441.tar.gz
dexon-0x-contracts-1aed970ce3468306f3bedbfdc29669d42e487441.tar.bz2
dexon-0x-contracts-1aed970ce3468306f3bedbfdc29669d42e487441.tar.lz
dexon-0x-contracts-1aed970ce3468306f3bedbfdc29669d42e487441.tar.xz
dexon-0x-contracts-1aed970ce3468306f3bedbfdc29669d42e487441.tar.zst
dexon-0x-contracts-1aed970ce3468306f3bedbfdc29669d42e487441.zip
standarize on `grey` over `gray` spelling and other color related fixes
Diffstat (limited to 'packages/website/ts/components/top_bar.tsx')
-rw-r--r--packages/website/ts/components/top_bar.tsx7
1 files changed, 3 insertions, 4 deletions
diff --git a/packages/website/ts/components/top_bar.tsx b/packages/website/ts/components/top_bar.tsx
index 179840ffc..73bdfacca 100644
--- a/packages/website/ts/components/top_bar.tsx
+++ b/packages/website/ts/components/top_bar.tsx
@@ -12,7 +12,6 @@ import {DocsInfo} from 'ts/pages/documentation/docs_info';
import {NestedSidebarMenu} from 'ts/pages/shared/nested_sidebar_menu';
import {DocsMenu, MenuSubsectionsBySection, Styles, WebsitePaths} from 'ts/types';
import {colors} from 'ts/utils/colors';
-import {configs} from 'ts/utils/configs';
import {constants} from 'ts/utils/constants';
interface TopBarProps {
@@ -44,11 +43,11 @@ const styles: Styles = {
},
addressPopover: {
backgroundColor: colors.blueGrey500,
- color: 'white',
+ color: colors.white,
padding: 3,
},
topBar: {
- backgroundColor: 'white',
+ backgroundcolor: colors.white,
height: 59,
width: '100%',
position: 'fixed',
@@ -61,7 +60,7 @@ const styles: Styles = {
},
menuItem: {
fontSize: 14,
- color: colors.darkestGray,
+ color: colors.darkestGrey,
paddingTop: 6,
paddingBottom: 6,
marginTop: 17,