From 92365387847da34ea0998baf62329d887532d4e3 Mon Sep 17 00:00:00 2001 From: Ching L Date: Thu, 4 Dec 2025 01:11:59 +0800 Subject: [PATCH] fix: adjust container dimensions to maintain original aspect ratio with 50px height --- sortbylikecount.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sortbylikecount.js b/sortbylikecount.js index 7619118..a72c7c3 100644 --- a/sortbylikecount.js +++ b/sortbylikecount.js @@ -93,14 +93,14 @@ const style = document.createElement('style'); style.textContent = ` .plyr__preview-thumb__image-container { - width: 85px !important; + width: 88px !important; height: 50px !important; overflow: hidden; } .plyr__preview-thumb__image-container img { width: 253px !important; height: 143px !important; - transform: scale(0.336) !important; + transform: scale(0.35) !important; transform-origin: top left !important; } `;