Improve log display for small displays
This commit is contained in:
parent
7dc976e347
commit
1b7152930d
1 changed files with 18 additions and 16 deletions
|
@ -58,7 +58,8 @@
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if entries and not filter_nsfw %}
|
{% if entries and not filter_nsfw %}
|
||||||
<table class="table is-narrow is-striped">
|
<div class="table-container">
|
||||||
|
<table class="table is-narrow is-striped is-fullwidth">
|
||||||
<tbody>
|
<tbody>
|
||||||
{% for entry in entries %}
|
{% for entry in entries %}
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -74,6 +75,7 @@
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
{% elif entries %}
|
{% elif entries %}
|
||||||
{% include "nsfw/alert.html" with next_url=current_url %}
|
{% include "nsfw/alert.html" with next_url=current_url %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Reference in a new issue