Set max size for embedded images in profile description

This commit is contained in:
r 2022-03-30 17:06:19 +00:00
parent 2a01471621
commit 153f4a492b
1 changed files with 8 additions and 0 deletions

View File

@ -286,6 +286,14 @@ textarea {
margin: 0;
}
.user-profile-decription img {
height: auto;
width: auto;
max-height: 240px;
max-width: 280px;
object-fit: contain;
}
.d-inline {
display: inline;
}