Browse Source

fix(chat): limit image size within a chat message

pull/2987/head
Gabe Kangas 2 years ago
parent
commit
4325c64205
No known key found for this signature in database
GPG Key ID: 4345B2060657F330
  1. 6
      web/components/chat/ChatSystemMessage/ChatSystemMessage.module.scss

6
web/components/chat/ChatSystemMessage/ChatSystemMessage.module.scss

@ -36,6 +36,12 @@ @@ -36,6 +36,12 @@
border-radius: var(--chat-text-highlight-border-radius);
background-color: var(--color-owncast-palette-7);
}
img {
max-width: 100%;
max-height: 30vh;
object-fit: contain;
}
}
a {

Loading…
Cancel
Save