From 0054293187062e47cd8302b69d8c505085b8a262 Mon Sep 17 00:00:00 2001 From: Ching L Date: Thu, 4 Dec 2025 01:16:49 +0800 Subject: [PATCH] fix: add transform scale to shrink preview images to fit container --- sortbylikecount.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sortbylikecount.js b/sortbylikecount.js index 32850ad..3b7ada7 100644 --- a/sortbylikecount.js +++ b/sortbylikecount.js @@ -97,6 +97,10 @@ height: 50px !important; overflow: hidden; } + .plyr__preview-thumb__image-container img { + transform: scale(0.35) !important; + transform-origin: top left !important; + } `; document.head.appendChild(style); console.log('Custom styles added for preview thumb image container');