ui(resources): tweak typo of header

This commit is contained in:
Jean-Philippe Sirois
2020-05-26 03:49:17 -04:00
parent a027dd8e6b
commit f4e40a889e
2 changed files with 13 additions and 6 deletions
+8 -1
View File
@@ -1,4 +1,5 @@
import React from "react"
import cx from "classnames"
import * as SC from "./styles"
import { Container } from "../Container"
@@ -23,7 +24,13 @@ export const HeaderBarebone: React.FC<IHeaderBareboneProps> = (props) => {
<SC.Box>
{props.above}
<SC.Title>{props.title}</SC.Title>
<SC.Title
className={cx({
"has-content-below": props.content,
})}
>
{props.title}
</SC.Title>
{props.content}
</SC.Box>