shorten bios in user cards

pull/181/head
Aevann 2023-08-06 10:26:58 +03:00
parent 1d7b4c18a5
commit 7a364bb5e2
2 changed files with 6 additions and 1 deletions

View File

@ -7659,3 +7659,8 @@ body {
.table *, .playing-card_large {
word-break: keep-all !important;
}
.user-card-bio {
max-height: 50px;
overflow-y: auto;
}

View File

@ -33,7 +33,7 @@
{%- endif %}
{% if FEATURES['USERS_PROFILE_BODYTEXT'] and not hide_bios and u.bio_html and u.can_see_my_shit %}
<div class="card-text mt-3">{{u.bio_html | safe}}</div>
<div class="card-text user-card-bio mt-3">{{u.bio_html | safe}}</div>
{% endif %}
</div>
</div>