mirror of
https://github.com/owncast/owncast.git
synced 2025-11-02 20:23:29 +08:00
fix(chat): limit image size within a chat message
This commit is contained in:
@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user