Preserve timeline image aspect ratios while capping extreme heights

Hop-State: A_06FP8XBJG1KAXASRWXBHKSG
Hop-Proposal: R_06FP8XAZCNJPCZJ7TK97X6R
Hop-Task: T_06FP8WKEDCADT9GRPPF08V0
Hop-Attempt: AT_06FP8WKEDETRHWNPKX8G4HR
This commit is contained in:
2026-07-14 23:27:26 -07:00
committed by Hop
parent b14be97965
commit 068d6d8bc0
+3 -4
View File
@@ -445,9 +445,9 @@ a.btn-primary:visited {
.post-media-item img { .post-media-item img {
width: 100%; width: 100%;
height: 100%; height: auto;
max-height: 360px; max-height: min(80vh, 900px);
object-fit: cover; object-fit: contain;
display: block; display: block;
} }
@@ -1606,7 +1606,6 @@ a.btn-primary:visited {
gap: 8px; gap: 8px;
} }
.post-media-item img,
.post-media-item video { .post-media-item video {
max-height: 400px; max-height: 400px;
} }