Skip to content

Commit d20077a

Browse files
committed
Converted to col-xs-* from col-md-* classes for navbar div
By doing this, when a page is heavily zoomed in (e.g. 500%) the navbar icons stay in the same row, rather than breaking onto two different rows.
1 parent 745e85d commit d20077a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

_includes/episode_navbar.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Navigation bar for an episode.
33
{% endcomment %}
44
<div class="row">
5-
<div class="col-md-1">
5+
<div class="col-xs-1">
66
<h3>
77
{% if page.previous.url %}
88
<a href="{{ page.root }}{{ page.previous.url }}"><span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span><span class="sr-only">previous episode</span></a>
@@ -11,12 +11,12 @@ <h3>
1111
{% endif %}
1212
</h3>
1313
</div>
14-
<div class="col-md-10">
14+
<div class="col-xs-10">
1515
{% if include.episode_navbar_title %}
1616
<h3 class="maintitle"><a href="{{ page.root }}/">{{ site.title }}</a></h3>
1717
{% endif %}
1818
</div>
19-
<div class="col-md-1">
19+
<div class="col-xs-1">
2020
<h3>
2121
{% if page.next.url %}
2222
<a href="{{ page.root }}{{ page.next.url }}"><span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span><span class="sr-only">next episode</span></a>

0 commit comments

Comments
 (0)