Skip to content

Commit

Permalink
Make layout a bit more mobile friendly
Browse files Browse the repository at this point in the history
Switch columns on smaller screens, add margin & overflow
  • Loading branch information
pajowu committed Oct 22, 2024
1 parent 93f7b22 commit 13f8606
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{% block app_body %}
<div class="container">
<div class="row">
<div class="col-md-3">
<div class="cal col-md-3 mb-3 order-2 order-md-1">
<div class="bg-body p-3 border-yellow">
<h3 class="h5">{% translate 'Refine your query' %}</h3>
<form method="get" class="froide-auto-submit filter__field">
Expand All @@ -14,8 +14,8 @@ <h3 class="h5">{% translate 'Refine your query' %}</h3>
</form>
</div>
</div>
<div class="col-md-9 d-flex">
<div class="bg-body p-3 border-yellow w-100">
<div class="col col-md-9 d-flex mb-3 order-1 order-md-2">
<div class="bg-body p-3 border-yellow w-100 overflow-auto">
{% if object_list %}
<table class="table">
<thead>
Expand Down

0 comments on commit 13f8606

Please sign in to comment.