Skip to content

Commit

Permalink
Add footer text to landing page bottom panel
Browse files Browse the repository at this point in the history
- Update mimemagic
  • Loading branch information
MImranAsghar committed Apr 9, 2021
1 parent c2fb73b commit 24aa730
Show file tree
Hide file tree
Showing 6 changed files with 1,035 additions and 714 deletions.
4 changes: 3 additions & 1 deletion viscoll-api/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,9 @@ GEM
marcel (0.3.3)
mimemagic (~> 0.3.2)
method_source (0.9.2)
mimemagic (0.3.4)
mimemagic (0.3.10)
nokogiri (~> 1)
rake
mini_mime (1.0.2)
mini_portile2 (2.4.0)
minitest (5.14.0)
Expand Down
7 changes: 7 additions & 0 deletions viscoll-app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions viscoll-app/sass/layout/_landing.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,26 @@
}

.panelBottom {
display: table;
width: 100%;
height:10vh;
background: $teal;

div {
display: table-cell;
vertical-align: middle;
}

span:first-child {
font-weight: bold;
}

span {
color: #2b4352;
font-size: 1.1em;
display: block;
margin-bottom: .5em;
}
}

hr {
Expand Down
9 changes: 7 additions & 2 deletions viscoll-app/src/containers/Authentication.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,13 @@ class Landing extends Component {
{resendConfirmation}
</div>
</div>
<div className="panelBottom"></div>
<NetworkErrorScreen />
<div className="panelBottom">
<div>
<span>Developed by the University of Toronto Libraries</span>
<span>In collaboration with <b>Dot Porter</b> and <b>Alberto Campagnolo</b></span>
</div>
</div>
<NetworkErrorScreen/>
</div>
);
}
Expand Down
Loading

0 comments on commit 24aa730

Please sign in to comment.