This commit is contained in:
cube
2026-03-31 17:01:07 +01:00
parent 931448bc05
commit 249ff7a5f3
3 changed files with 7 additions and 2 deletions

View File

@@ -103,6 +103,11 @@ form textarea{
height:20px;
width:auto;
}
.stamp
{
height:56px;
width:auto;
}

View File

@@ -106,7 +106,7 @@
<div class="manage_images_2">
{% for stamp in stamps %}
<div class="manage_stamps_3">
<img src="{{ url_for('static', filename='stamps/'+stamp[2]) }}">
<img class="stamp" src="{{ url_for('static', filename='stamps/'+stamp[2]) }}">
<br class="clear" />
<a href="{{ url_for('manage.delete_stamp', mid=member[0], stamp_id=stamp[0]) }}">Delete</a>
</div>

View File

@@ -57,7 +57,7 @@
{% if stamps|length > 0 %}
<div class="heading big">Stamps</div>
{% for stamp in stamps %}
<img src="{{ url_for('static', filename='stamps/'+stamp[0]) }}">
<img class="stamp" src="{{ url_for('static', filename='stamps/'+stamp[0]) }}">
{% endfor %}
{% endif %}
<br class="clear" />