Added title prop to body section

This commit is contained in:
2018-03-18 11:03:36 +11:00
parent 7e37b639c1
commit 9be3278139
2 changed files with 7 additions and 1 deletions

View File

@ -21,7 +21,10 @@ class BodySection extends React.Component {
return ( return (
<Section section="body" className={this.props.className}> <Section section="body" className={this.props.className}>
<div className="c-section--style-body__inner"> <div className="c-section--style-body__inner">
{this.props.children} { this.props.title }
<div className="c-body-section__wrapper">
{this.props.children}
</div>
</div> </div>
</Section> </Section>
) )

View File

@ -12,6 +12,9 @@
*/ */
.c-section--style-body__inner { .c-section--style-body__inner {
background: $s-color--background-default; background: $s-color--background-default;
}
.c-body-section__wrapper {
padding: 1em; padding: 1em;
} }