Skip to content

Commit

Permalink
Added some footer content - still needs formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jwexitplan committed Apr 18, 2019
1 parent 1d0d689 commit 1e2be64
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
12 changes: 11 additions & 1 deletion frontend/src/Footer/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,17 @@ import './Footer.scss';
const Footer = () => {
return (
<footer>

<div className="footer-location">
<h3>Exit Plan</h3>
<p>123 W 12th Street,</p>
<p>Denver, CO 12345</p>
</div>
<div className="footer-links">
<h3>Useful Links</h3>
<a>Customer Support</a>
<a>Emergency Resources</a>
<a>Directory</a>
</div>
</footer>
)
};
Expand Down
8 changes: 8 additions & 0 deletions frontend/src/Footer/Footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,16 @@ footer {
background-color: $dark-blue;
height: 200px;
display: flex;
flex-direction: row;
justify-content: space-between;
color: $off-white;
}

.footer-location {
width: 200px;
}

.footer-links {
width: 200px;
}

0 comments on commit 1e2be64

Please sign in to comment.