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

@ -33,7 +33,7 @@
&__background { &__background {
position: absolute; position: absolute;
z-index: 0; z-index: -1;
width: 100%; width: 100%;
height: 100%; height: 100%;
object-fit: cover; object-fit: cover;

View File

@ -29,8 +29,7 @@ export default() => {
<p>Effective date: June 27, 2018</p> <p>Effective date: June 27, 2018</p>
<p> <p>
domsPlace ("us", "we", or "our") operates the domsPlace ("us", "we", or "our") operates the <a href="/domsplace.com">
<a href="/domsplace.com">
https://domsplace.com website https://domsplace.com website
</a> </a>
(the "Service"). (the "Service").
@ -47,8 +46,7 @@ export default() => {
Service, you agree to the collection and use of information in Service, you agree to the collection and use of information in
accordance with this policy. Unless otherwise defined in this Privacy accordance with this policy. Unless otherwise defined in this Privacy
Policy, terms used in this Privacy Policy have the same meanings as in Policy, terms used in this Privacy Policy have the same meanings as in
our Terms and Conditions, accessible from our Terms and Conditions, accessible from <a href="//domsplace.com">
<a href="//domsplace.com">
https://domsplace.com https://domsplace.com
</a> </a>
</p> </p>
@ -153,8 +151,7 @@ export default() => {
<p><strong>Google Analytics</strong></p> <p><strong>Google Analytics</strong></p>
<p>Google Analytics is a web analytics service offered by Google that tracks and reports website traffic. Google uses the data collected to track and monitor the use of our Service. This data is shared with other Google services. Google may use the collected data to contextualize and personalize the ads of its own advertising network.</p> <p>Google Analytics is a web analytics service offered by Google that tracks and reports website traffic. Google uses the data collected to track and monitor the use of our Service. This data is shared with other Google services. Google may use the collected data to contextualize and personalize the ads of its own advertising network.</p>
<p>You can opt-out of having made your activity on the Service available to Google Analytics by installing the Google Analytics opt-out browser add-on. The add-on prevents the Google Analytics JavaScript (ga.js, analytics.js, and dc.js) from sharing information with Google Analytics about visits activity.</p> <p>You can opt-out of having made your activity on the Service available to Google Analytics by installing the Google Analytics opt-out browser add-on. The add-on prevents the Google Analytics JavaScript (ga.js, analytics.js, and dc.js) from sharing information with Google Analytics about visits activity.</p>
<p>For more information on the privacy practices of Google, please visit the Google Privacy & Terms web page: <p>For more information on the privacy practices of Google, please visit the Google Privacy & Terms web page: <a href="https://policies.google.com/privacy?hl=en" target="_blank">https://policies.google.com/privacy?hl=en</a>
<a href="https://policies.google.com/privacy?hl=en" target="_blank">https://policies.google.com/privacy?hl=en</a>
</p> </p>
</li> </li>
</ul> </ul>

View File

@ -35,15 +35,20 @@ import Styles from './PrivacyPolicyPage.scss';
export default withLanguage(props => { export default withLanguage(props => {
let { lang } = props; let { lang } = props;
return ( 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 /> <ClearSection />
<PageBoundary small> <PageBoundary small>
<BodySection> <BodySection>
<Title>{ lang.pages.privacy.heading }</Title> <Title>{ lang.pages.privacy.heading }</Title>
{ lang.pages.privacy.policy } { lang.pages.privacy.policy }
</BodySection> </BodySection>
<ClearSection />
</PageBoundary> </PageBoundary>
<ClearSection />
</Page> </Page>
); );
}); });

View File

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