Browse Source

Fix footer links on small mobile devices

pm2
Luke Childs 9 years ago
parent
commit
160d61d737
  1. 12
      assets/style.css
  2. 9
      views/index.html

12
assets/style.css

@ -399,6 +399,18 @@ footer {
td:not(:first-child):before { td:not(:first-child):before {
min-width: 6em; min-width: 6em;
} }
/* List footer links */
footer .wrapper > a {
display: block;
margin-bottom: 0.2em;
}
footer .divider {
display: none;
}
.me {
float: none;
}
} }
/* Icons */ /* Icons */

9
views/index.html

@ -27,12 +27,13 @@
<footer> <footer>
<div class="wrapper"> <div class="wrapper">
<a href="/about">About</a> <a href="/about">About</a>
- <span class="divider">-</span>
<a target="_blank" href="//github.com/lukechilds/tor-explorer">Source code</a> <a target="_blank" href="//github.com/lukechilds/tor-explorer">Source code</a>
- <span class="divider">-</span>
<a target="_blank" href="//github.com/lukechilds/tor-explorer/issues">Report a bug</a> <a target="_blank" href="//github.com/lukechilds/tor-explorer/issues">Report a bug</a>
<div class="me">
<span class="me">A thing by <a target="_blank" href="//github.com/lukechilds">@lukechilds</a></span> A thing by <a target="_blank" href="//github.com/lukechilds">@lukechilds</a>
</div>
</div> </div>
</footer> </footer>

Loading…
Cancel
Save