aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/components/ContentBlock.tsx
diff options
context:
space:
mode:
authorAugust Skare <post@augustskare.no>2018-10-23 19:34:35 +0800
committerGitHub <noreply@github.com>2018-10-23 19:34:35 +0800
commita4de585feb0f8e5ec99f0eb4a7b9aca8a24144f5 (patch)
tree4939099dab84390b0cb03f6237e5ca0e002e73eb /packages/dev-tools-pages/ts/components/ContentBlock.tsx
parente624759bc787e826f8d7011352754f62d0a84a02 (diff)
downloaddexon-0x-contracts-a4de585feb0f8e5ec99f0eb4a7b9aca8a24144f5.tar
dexon-0x-contracts-a4de585feb0f8e5ec99f0eb4a7b9aca8a24144f5.tar.gz
dexon-0x-contracts-a4de585feb0f8e5ec99f0eb4a7b9aca8a24144f5.tar.bz2
dexon-0x-contracts-a4de585feb0f8e5ec99f0eb4a7b9aca8a24144f5.tar.lz
dexon-0x-contracts-a4de585feb0f8e5ec99f0eb4a7b9aca8a24144f5.tar.xz
dexon-0x-contracts-a4de585feb0f8e5ec99f0eb4a7b9aca8a24144f5.tar.zst
dexon-0x-contracts-a4de585feb0f8e5ec99f0eb4a7b9aca8a24144f5.zip
Feature/colors (#5)
* fix color variables * rename link var to type
Diffstat (limited to 'packages/dev-tools-pages/ts/components/ContentBlock.tsx')
-rw-r--r--packages/dev-tools-pages/ts/components/ContentBlock.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/dev-tools-pages/ts/components/ContentBlock.tsx b/packages/dev-tools-pages/ts/components/ContentBlock.tsx
index 39c99f6d9..6db4c3994 100644
--- a/packages/dev-tools-pages/ts/components/ContentBlock.tsx
+++ b/packages/dev-tools-pages/ts/components/ContentBlock.tsx
@@ -62,7 +62,7 @@ function ContentBlock(props: ContentBlockProps) {
return (
<Base>
- <Title color={props.colors.main}>{props.title}</Title>
+ <Title color={props.colors.type}>{props.title}</Title>
{children ? <Content>{children}</Content> : null}
</Base>
);