Skip to content

Commit

Permalink
Privacy styling tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
SARodrigues committed Mar 8, 2024
1 parent 75b262c commit ab863a7
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 3 deletions.
2 changes: 1 addition & 1 deletion layouts/privacy-policy/component.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const PrivacyPolicyPage = () => (
<div className="privacy-container">
<div id="intro">
<h1>World Resources Institute - Privacy Policy</h1>
<i>Last revised: October 30, 2023</i>
<i className="last-revised">Last revised: October 30, 2023</i>
<p>
We are World Resources Institute, a global research nonprofit
headquartered at 10 G Street NE Suite 800, Washington, D.C. 20002,
Expand Down
31 changes: 29 additions & 2 deletions layouts/privacy-policy/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,51 @@
padding: rem(50px) 0;

.privacy-container {
// overflow: hidden;
// height: 100vh;
position: relative;

b {
font-weight: 500;
}

p {
font-size: 1rem;
margin: 1rem 0;

& + ul {
margin-top: -0.5rem;
}
}

ul {
margin: 1rem 0;
}

h2 {
font-size: 2rem;
margin-top: 4rem;
}

a {
text-decoration: underline;
}

li {
display: list-item;
list-style: disc;
font-size: 1rem;
margin-left: 2.4rem;
margin-top: 0.2rem;
}

address {
font-size: 1rem;
margin-left: 1rem;
}

.last-revised {
display: block;
font-size: 1.2rem;
padding-bottom: 2rem;
}
}
}

0 comments on commit ab863a7

Please sign in to comment.