Last commit before background change

This commit is contained in:
2018-03-21 19:41:11 +11:00
parent 5aa8bfde9f
commit 676207dfad
15 changed files with 1417 additions and 35 deletions

View File

@ -21,11 +21,15 @@ class BodySection extends React.Component {
let children;
if(this.props.children) {
children = (
<div className="c-body-section__wrapper">
{this.props.children}
</div>
);
if(this.props.unpadded) {
children = this.props.children;
} else {
children = (
<div className="c-body-section__wrapper">
{this.props.children}
</div>
);
}
}
return (