video width fix on mobile

pull/198/head
Aevann 2023-08-30 11:53:55 +03:00
parent eea89a4e28
commit d0f0201a85
1 changed files with 11 additions and 0 deletions

View File

@ -7082,6 +7082,17 @@ div.markdown {
max-width: 85vw !important;
}
@media (max-width: 768px) {
.resizable {
max-width: 100vw !important;
}
.resizable > * {
height: 100% !important;
width: 100% !important;
max-width: 100vw !important;
}
}
.user-signature video {
max-height: min(var(--signature-max-height),50vh) !important;
}