Commit bbb5ba547d8e8397c7a8009680a09f0bfc0a1b43
1 parent
9aee6286
Exists in
master
and in
39 other branches
Taking care of different monitor sizes
Showing
1 changed file
with
5 additions
and
3 deletions
Show diff stats
src/super_archives/templates/superarchives/thread-dashboard.html
... | ... | @@ -2,14 +2,16 @@ |
2 | 2 | {% load i18n %} |
3 | 3 | |
4 | 4 | {% block main-content %} |
5 | + <h2>{% trans 'Discussions'|title %}</h2> | |
6 | + <hr/> | |
5 | 7 | |
6 | 8 | {% for listname, latest, most_relevant in lists %} |
7 | 9 | {% if latest or most_relevant %} |
8 | - <h2>{{ listname|title }}</h2> | |
10 | + <h3 class="text-center"><b>{{ listname|title }}</b></h3> | |
9 | 11 | <hr/> |
10 | 12 | |
11 | 13 | <div class="row"> |
12 | - <div class="col-lg-6"> | |
14 | + <div class="col-lg-6 col-md-6 col-sm-12 col-xs-12"> | |
13 | 15 | <h4>{% trans 'latest'|title %}</h4> |
14 | 16 | <ul class="message-list"> |
15 | 17 | {% for thread in latest %} |
... | ... | @@ -23,7 +25,7 @@ |
23 | 25 | </div> |
24 | 26 | </div> |
25 | 27 | |
26 | - <div class="col-lg-6"> | |
28 | + <div class="col-lg-6 col-md-6 col-sm-12 col-xs-12"> | |
27 | 29 | <h4>{% trans 'most relevant'|title %}</h4> |
28 | 30 | <ul class="message-list"> |
29 | 31 | {% for thread in most_relevant %} | ... | ... |