aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBobby <[email protected]>2023-06-10 22:20:15 -0400
committerBobby <[email protected]>2023-06-10 22:20:15 -0400
commit1b150b957263a52f8a0286587dcafe79b792deab (patch)
treeec6f2fdfd3c91081a36fe85f7e25c1e17f146325
parentacba8b442b41b91492f85f293bfbafa86f13a053 (diff)
downloadthatcomputerscientist-1b150b957263a52f8a0286587dcafe79b792deab.tar.xz
thatcomputerscientist-1b150b957263a52f8a0286587dcafe79b792deab.zip
Fix max-height for article cover
-rw-r--r--templates/blog/post.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/blog/post.html b/templates/blog/post.html
index b8183125..1c27eb4f 100644
--- a/templates/blog/post.html
+++ b/templates/blog/post.html
@@ -43,7 +43,7 @@
<div id="article-body">
{{ post.first_paragraph | safe }}
- <img style="width: 100%; height: 473.3333px; margin: 20px auto; display: block; border-radius: 8px;" src="{% url 'ignis:post_image' '710' post.id %}.gif" alt="Post Image for {{ post.title }}">
+ <img style="width: 100%; height: 473.3333px; max-height: 473.3333px; margin: 20px auto; display: block; border-radius: 8px;" src="{% url 'ignis:post_image' '710' post.id %}.gif" alt="Post Image for {{ post.title }}">
<hr>
{{ post.body | safe }}
</div>