Enforce avatar img size

This commit is contained in:
JC Brand 2018-11-14 16:36:56 +01:00
parent fb8ccc1fc1
commit 3505750536
2 changed files with 7 additions and 3 deletions

View File

@ -11866,9 +11866,11 @@ body.reset {
display: block; }
#conversejs .message.chat-msg .chat-msg__avatar {
margin-top: 0.5em;
height: 36px;
vertical-align: middle;
width: 36px; }
height: 36px;
width: 36px;
min-height: 36px;
min-width: 36px; }
#conversejs .message.chat-msg .chat-msg__heading {
width: 100%;
margin-top: 0.5em;

View File

@ -198,9 +198,11 @@
.chat-msg__avatar {
margin-top: 0.5em;
height: 36px;
vertical-align: middle;
height: 36px;
width: 36px;
min-height: 36px;
min-width: 36px;
}
.chat-msg__heading {