reduce expanded image height on mobile

pull/157/head
Aevann 2023-06-25 21:21:20 +03:00
parent b4e8d0aad4
commit 1d20d27b17
1 changed files with 4 additions and 1 deletions

View File

@ -6836,7 +6836,7 @@ div.markdown {
}
#desktop-expanded-image {
max-width: 100%;
max-height: 80vh;
max-height: 70vh;
border: 5px white solid;
}
#expandImageModal > .modal-dialog {
@ -6847,6 +6847,9 @@ div.markdown {
margin-bottom: 0 !important;
}
@media (min-width: 768px) {
#desktop-expanded-image {
max-height: 80vh;
}
#expandImageModal > .modal-dialog {
max-width: 90% !important;
}