Skip to content

Commit

Permalink
fix: img size when zooming
Browse files Browse the repository at this point in the history
  • Loading branch information
JJJHANG committed Feb 7, 2024
1 parent c1e5db0 commit 76a9f27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/article-detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ <h1 class="heading-lg-ul">
<div class="carousel-inner">
{% for image in imagesList %}
<div class="item {% if forloop.counter == 1 %} active{% endif %}">
<img src="/media/{{ image.images }}" style="max-height:560px;margin-left:auto;margin-right:auto;display: block;">
<img src="/media/{{ image.images }}" style="max-height:100%;margin-left:auto;margin-right:auto;display: block;">
<p>{{image.cover_license_text}}</p>
</div>
{% endfor %}
Expand Down

0 comments on commit 76a9f27

Please sign in to comment.