aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/sidebar_table_layout.html
diff options
context:
space:
mode:
authorLucas Verney <phyks@phyks.me>2017-06-11 13:33:22 -0400
committerAlexis Metaireau <alexis@notmyidea.org>2017-06-11 19:33:22 +0200
commit32f2339c478d9f1f756780ddf7d7d188cc0e5f67 (patch)
tree420b15ae1e8ee0e3f0708e04d2c07be480dedbce /budget/templates/sidebar_table_layout.html
parentea8eda35a7bd831964c38b38cc9a5b19bcb44d6a (diff)
downloadihatemoney-mirror-32f2339c478d9f1f756780ddf7d7d188cc0e5f67.zip
ihatemoney-mirror-32f2339c478d9f1f756780ddf7d7d188cc0e5f67.tar.gz
ihatemoney-mirror-32f2339c478d9f1f756780ddf7d7d188cc0e5f67.tar.bz2
More responsive layout (#213)
Fix navbar responsiveness on mobile.
Diffstat (limited to 'budget/templates/sidebar_table_layout.html')
-rw-r--r--budget/templates/sidebar_table_layout.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/budget/templates/sidebar_table_layout.html b/budget/templates/sidebar_table_layout.html
index 7c831f4..239acb3 100644
--- a/budget/templates/sidebar_table_layout.html
+++ b/budget/templates/sidebar_table_layout.html
@@ -2,11 +2,11 @@
{% block body %}
<div class="row" style="height: 100%">
-<aside id="sidebar" class="sidebar col-3 " style="height: 100%">
+<aside id="sidebar" class="sidebar col-xs-12 col-md-3 " style="height: 100%">
{% block sidebar %}{% endblock %}
</aside>
-<main class="offset-md-3 col-9">
+<main class="offset-md-3 col-xs-12 col-md-9">
{% block content %}{% endblock %}
</main>