Skip to content

Commit

Permalink
tabs xs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dbtek committed Dec 10, 2013
1 parent 9af601a commit 76ccdad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions categories.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
group: navigation
---

<div class="col-sm-3">
<div class="col-sm-3 col-xs-6">
<ul class="nav nav-tabs-vertical">
{% assign categories_list = site.categories %}
{% if categories_list.first[0] == null %}
Expand All @@ -29,7 +29,7 @@
</ul>
</div>
<!-- Tab panes -->
<div class="tab-content col-sm-9">
<div class="tab-content col-sm-9 col-xs-6">
{% for category in site.categories %}
<div class="tab-pane" id="{{ category[0] }}-ref">
<h2 style="margin-top: 0px">Posts in {{ category[0] | capitalize }}</h2>
Expand Down
4 changes: 2 additions & 2 deletions tags.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
group: navigation
---

<div class="col-sm-3">
<div class="col-sm-3 col-xs-6">
<ul class="nav nav-tabs-vertical">
{% assign tags_list = site.tags %}
{% if tags_list.first[0] == null %}
Expand All @@ -29,7 +29,7 @@
</ul>
</div>
<!-- Tab panes -->
<div class="tab-content col-sm-9">
<div class="tab-content col-sm-9 col-xs-6">
{% for tag in site.tags %}
<div class="tab-pane" id="{{ tag[0] }}-ref">
<h2 style="margin-top: 0px">Posts tagged with {{ tag[0] }}</h2>
Expand Down

0 comments on commit 76ccdad

Please sign in to comment.