aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2020-07-11 00:01:03 +0100
committerrubenwardy <rw@rubenwardy.com>2020-07-11 00:01:03 +0100
commit0e9b8a1a821fe8122ddf7d3c53702e52123136f7 (patch)
tree04232b83bb59dfe3fc3536284022a96b2e15040e
parent6150447c858249d48289ddd25141d7ac401982e9 (diff)
downloadcheatdb-0e9b8a1a821fe8122ddf7d3c53702e52123136f7.tar.xz
Fix title wrapping in /threads/
-rw-r--r--app/templates/macros/threads.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/templates/macros/threads.html b/app/templates/macros/threads.html
index 5c3421a..4e5c6f2 100644
--- a/app/templates/macros/threads.html
+++ b/app/templates/macros/threads.html
@@ -86,7 +86,7 @@
by {{ t.author.display_name }}
</div>
- <div class="col-sm">
+ <div class="col-sm-auto">
{% if t.package %}
{{ _("%(title)s by %(author)s",
title="<b>" | safe + t.package.title + "</b>" | safe,
@@ -94,7 +94,7 @@
{% endif %}
</div>
- <div class="col-sm text-muted text-right">
+ <div class="col-sm-auto text-muted text-right">
{{ t.created_at | datetime }}
</div>
</div>