Fix images going out of bounds in renderer

This commit is contained in:
chylex 2016-11-01 15:56:29 +01:00
parent e7a06f6748
commit 454bc0fb39

View File

@ -206,9 +206,14 @@ body {
margin-top: 8px;
}
.message .thumbnail img {
max-height: 320px;
.message .thumbnail {
max-width: calc(100% - 20px);
max-height: 320px;
}
.message .thumbnail img {
max-width: 100%;
max-height: 320px;
border-radius: 3px;
}