Fix to ensure rectangular generated images are not cropped on web app

Previously non-square images would get cropped when being displayed on
web app
This commit is contained in:
Debanjum
2025-11-29 12:51:51 -08:00
parent 32966646e2
commit 51b893d51d

View File

@@ -127,7 +127,9 @@ div.imageWrapper img {
}
div.khoj div.imageWrapper img {
height: 512px;
max-height: 512px;
height: auto;
object-fit: contain;
}
div.khoj div.imageWrapper {