diff options
author | Vincent Ambo <tazjin@gmail.com> | 2018-04-16T14·48+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2018-04-16T14·48+0200 |
commit | 37331d9107c6f51a5051f6501fa9b469d0aa8e69 (patch) | |
tree | 9d63f8a44ae7c6391571fd4800c3406fca349196 | |
parent | ee855d8b6748cc9c22a6dc4cb2bd5f1b7e44e346 (diff) |
fix(thread): Load Gravatar images at larger size
This makes them look nicer in 2x situations (e.g. retina displays) and when a user zooms in.
-rw-r--r-- | templates/thread.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/thread.html b/templates/thread.html index 5245adf99e85..655b9095df8d 100644 --- a/templates/thread.html +++ b/templates/thread.html @@ -29,7 +29,7 @@ {% for post in posts -%} <div id="post-{{ post.id}}" class="list-group-item d-flex row"> <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" style="width: 80px;"/> + <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> </div> |