Skip to content

Commit

Permalink
Merge pull request #269 from RobokopU24/bug-uichanges
Browse files Browse the repository at this point in the history
Bug uichanges
  • Loading branch information
hina-shah authored Nov 17, 2023
2 parents 8c75c1c + 8704170 commit 5e290d9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 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
1 change: 1 addition & 0 deletions src/pages/answer/leftDrawer/leftDrawer.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
width: 220px;
position: absolute;
margin-top: 14px;
z-index: -1;
}
2 changes: 1 addition & 1 deletion src/pages/answer/resultsTable/ResultExplorer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ export default function ResultExplorer({ answerStore }) {
elevation={3}
>
<h5 className="cardLabel">Answer Explorer</h5>
{answerStore.showNodePruneSlider && (
{ Boolean(answerStore.showNodePruneSlider) && (
<Box width={200} id="nodeNumSlider">
<Slider
value={numTrimmedNodes}
Expand Down

0 comments on commit 5e290d9

Please sign in to comment.