Merge pull request #3561 from thelounge/richrd/fix-video-overflow

Fix video element overflowing on chrome
This commit is contained in:
Pavel Djundik 2019-12-07 19:13:27 +02:00 committed by GitHub
commit 21bbfffb21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1580,8 +1580,12 @@ background on hover (unless active) */
max-width: 100%;
}
#chat video {
#chat .toggle-type-video {
max-width: 640px;
}
#chat video {
max-width: 100%;
max-height: 240px;
}