fix: resize preview thumb images to match container dimensions

This commit is contained in:
Ching L 2025-12-04 01:02:03 +08:00
parent dae0c77d3c
commit fb7736d27d

View File

@ -95,6 +95,12 @@
.plyr__preview-thumb__image-container {
width: 85px !important;
height: 50px !important;
overflow: hidden;
}
.plyr__preview-thumb__image-container img {
width: 85px !important;
height: 50px !important;
object-fit: cover;
}
`;
document.head.appendChild(style);