ihatemoney/budget/templates/sidebar_table_layout.html
Lucas Verney 32f2339c47 More responsive layout (#213)
Fix navbar responsiveness on mobile.
2017-06-11 19:33:22 +02:00

14 lines
322 B
HTML

{% extends "layout.html" %}
{% block body %}
<div class="row" 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-xs-12 col-md-9">
{% block content %}{% endblock %}
</main>
</div>
{% endblock %}