Feature/colors (#5)

* fix color variables

* rename link var to type
This commit is contained in:
August Skare
2018-10-23 12:34:35 +01:00
committed by GitHub
parent e624759bc7
commit a4de585feb
6 changed files with 7 additions and 7 deletions

View File

@@ -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>
);