Styled the background on the privacy policy page.

This commit is contained in:
2018-10-31 21:46:58 +11:00
parent 898e1e2a48
commit b8d814e203
4 changed files with 11 additions and 10 deletions

View File

@ -35,15 +35,20 @@ import Styles from './PrivacyPolicyPage.scss';
export default withLanguage(props => {
let { lang } = props;
return (
<Page style="privacy-policy" className="p-privacy-policy" title={ lang.pages.privacy.title }>
<Page
style="privacy-policy"
className="p-privacy-policy"
title={ lang.pages.privacy.title }
background={ require('@assets/images/patterns/schoolbell.svg') }
>
<ClearSection />
<PageBoundary small>
<BodySection>
<Title>{ lang.pages.privacy.heading }</Title>
{ lang.pages.privacy.policy }
</BodySection>
<ClearSection />
</PageBoundary>
<ClearSection />
</Page>
);
});

View File

@ -8,5 +8,4 @@
* 1.0.0 - 28/06/2018
*/
.p-privacy-policy {
background: #F7EFE2;
}