Skip to content

Commit

Permalink
STYLE: using footer html tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Hina Shah committed Nov 15, 2023
1 parent 7202030 commit ba640e5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/footer/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import './footer.css';

export default function Footer() {
return (
<div className="footer">
<footer>
<p>
ROBOKOP is a joint creation of <a href="http://www.renci.org" target="_blank" rel="noreferrer">RENCI</a>{' '}
and <a href="http://www.covar.com" target="_blank" rel="noreferrer">CoVar LLC</a>. Early development was{' '}
Expand All @@ -14,6 +14,6 @@ export default function Footer() {
<a href="https://datascience.nih.gov/about/odss" target="_blank" rel="noreferrer">ODSS</a>.{' '}
<Link to="/termsofservice">Terms of Service</Link>.
</p>
</div>
</footer>
);
}
5 changes: 3 additions & 2 deletions src/components/footer/footer.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
.footer {
footer {
position: absolute;
bottom: 0;
width: 100%;
height: auto;
color: #5e5e5e;
background-color: #f5f7fa;
}
.footer p {
footer p {
font-size: 1.25em;
margin-top: 5px;
text-align: center;
Expand Down

0 comments on commit ba640e5

Please sign in to comment.