diff options
author | August Skare <post@augustskare.no> | 2018-10-23 19:34:35 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-23 19:34:35 +0800 |
commit | a4de585feb0f8e5ec99f0eb4a7b9aca8a24144f5 (patch) | |
tree | 4939099dab84390b0cb03f6237e5ca0e002e73eb /packages/dev-tools-pages/ts/components | |
parent | e624759bc787e826f8d7011352754f62d0a84a02 (diff) | |
download | dexon-sol-tools-a4de585feb0f8e5ec99f0eb4a7b9aca8a24144f5.tar dexon-sol-tools-a4de585feb0f8e5ec99f0eb4a7b9aca8a24144f5.tar.gz dexon-sol-tools-a4de585feb0f8e5ec99f0eb4a7b9aca8a24144f5.tar.bz2 dexon-sol-tools-a4de585feb0f8e5ec99f0eb4a7b9aca8a24144f5.tar.lz dexon-sol-tools-a4de585feb0f8e5ec99f0eb4a7b9aca8a24144f5.tar.xz dexon-sol-tools-a4de585feb0f8e5ec99f0eb4a7b9aca8a24144f5.tar.zst dexon-sol-tools-a4de585feb0f8e5ec99f0eb4a7b9aca8a24144f5.zip |
Feature/colors (#5)
* fix color variables
* rename link var to type
Diffstat (limited to 'packages/dev-tools-pages/ts/components')
-rw-r--r-- | packages/dev-tools-pages/ts/components/ContentBlock.tsx | 2 |
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> ); |