Don't force auto height/width on "inline" images

This fixes the size of mikuphile emojis.
This commit is contained in:
r 2024-10-14 06:52:31 +00:00
parent 51d6ff26fe
commit 14d5eaf6e9

View file

@ -77,14 +77,22 @@ body,
margin: 0px;
}
.status-content img,
.status-image,
.status-video {
height: auto;
width: auto;
vertical-align: bottom;
}
.status-content img {
vertical-align: middle;
}
.status-content img,
.status-image,
.status-video {
max-height: 240px;
max-width: 280px;
vertical-align: bottom;
object-fit: contain;
}