Styled Privacy Page
This commit is contained in:
@ -30,11 +30,13 @@ import { Title } from './../../../typography/Typography';
|
||||
|
||||
const PrivacyPolicyPage = (props) => {
|
||||
return (
|
||||
<Page style="privacy-policy" title={ Language.get("pages.privacy.title") }>
|
||||
<Page style="privacy-policy" className="p-privacy-policy" title={ Language.get("pages.privacy.title") }>
|
||||
<PageBoundary small>
|
||||
<ClearSection />
|
||||
<Title>{ Language.get("pages.privacy.heading") }</Title>
|
||||
{ Language.get("pages.privacy.policy") }
|
||||
<BodySection>
|
||||
<Title>{ Language.get("pages.privacy.heading") }</Title>
|
||||
{ Language.get("pages.privacy.policy") }
|
||||
</BodySection>
|
||||
<ClearSection />
|
||||
</PageBoundary>
|
||||
</Page>
|
||||
|
@ -91,6 +91,7 @@
|
||||
@import './pages/_about-page.scss';
|
||||
@import './pages/_contact-page.scss';
|
||||
@import './pages/_home-page.scss';
|
||||
@import './pages/_privacy-policy-page.scss';
|
||||
|
||||
//Utilities
|
||||
@import './utilities/text-align.scss';
|
||||
|
12
public/styles/pages/_privacy-policy-page.scss
Normal file
12
public/styles/pages/_privacy-policy-page.scss
Normal file
@ -0,0 +1,12 @@
|
||||
/*
|
||||
* Privacy Policy Page
|
||||
* Contains the limited styles used on the privacy policy page.
|
||||
*
|
||||
* Dependencies:
|
||||
*
|
||||
* Version:
|
||||
* 1.0.0 - 28/06/2018
|
||||
*/
|
||||
.p-privacy-policy {
|
||||
background: #F7EFE2;
|
||||
}
|
Reference in New Issue
Block a user