From efd606d0b5e540b8c859b6f035415c1bbd44c9b4 Mon Sep 17 00:00:00 2001 From: Ching L Date: Thu, 4 Dec 2025 01:10:13 +0800 Subject: [PATCH] fix: use transform scale to properly resize preview thumb images --- sortbylikecount.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sortbylikecount.js b/sortbylikecount.js index cad52fc..7619118 100644 --- a/sortbylikecount.js +++ b/sortbylikecount.js @@ -98,10 +98,10 @@ overflow: hidden; } .plyr__preview-thumb__image-container img { - width: auto !important; - height: auto !important; - min-width: 85px !important; - min-height: 50px !important; + width: 253px !important; + height: 143px !important; + transform: scale(0.336) !important; + transform-origin: top left !important; } `; document.head.appendChild(style);