style(thread): Fix padding on thread view
Removing this padding lets the author column render evenly sized.
This commit is contained in:
parent
37331d9107
commit
1427220f9d
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@
|
|||
</div>
|
||||
|
||||
{% for post in posts -%}
|
||||
<div id="post-{{ post.id}}" class="list-group-item d-flex row">
|
||||
<div id="post-{{ post.id}}" class="list-group-item d-flex row pl-0">
|
||||
<div class="d-flex flex-column border-right col-2">
|
||||
<img class="mx-auto" src="https://www.gravatar.com/avatar/{{ post.author_gravatar }}?d=monsterid&s=160" style="width: 80px;"/>
|
||||
<span class="mx-auto text-center"><strong>{{ post.author_name }}</strong></span>
|
||||
|
|
Loading…
Reference in a new issue