From fb7736d27d697840fdc6054bbd9b78cc0c1cf90d Mon Sep 17 00:00:00 2001 From: Ching L Date: Thu, 4 Dec 2025 01:02:03 +0800 Subject: [PATCH] fix: resize preview thumb images to match container dimensions --- sortbylikecount.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sortbylikecount.js b/sortbylikecount.js index c271115..95998c9 100644 --- a/sortbylikecount.js +++ b/sortbylikecount.js @@ -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);