minor collection display fix

This commit is contained in:
Your Name 2023-01-16 22:26:13 -05:00 committed by Henri Dickson
parent 3c078aa2bc
commit 13eab483fa
2 changed files with 6 additions and 9 deletions

View file

@ -174,12 +174,9 @@ div.jsoneditor-menu {
aspect-ratio : 1 / 1;
border-radius: 50%;
background: #f7f7f7;
display: table;
}
.donut .text {
display: table-cell;
vertical-align: middle;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}
progress {

View file

@ -85,9 +85,6 @@
{{ collection.title }}
</a>
</h5>
{% if follower_count %}
被 {{ follower_count }} 人关注
{% endif %}
<p>
{% for cat, count in collection.get_summary.items %}
{% if count %}
@ -95,6 +92,9 @@
{% endif %}
{% endfor %}
</p>
{% if follower_count %}
<p> {{ follower_count }}人关注 </p>
{% endif %}
</div>
</div>
</div>