From 91bf5dc7ba28d2cf15a2ef1497001e15e2719a6d Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Sun, 2 Feb 2025 02:22:47 +0500 Subject: [PATCH] fix video preview size on the /videos/ page --- src/static/populateVideos.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/static/populateVideos.js b/src/static/populateVideos.js index 36e7dd3..dfa501e 100644 --- a/src/static/populateVideos.js +++ b/src/static/populateVideos.js @@ -3,7 +3,7 @@ function PlaceholderVid() { placeholder.dataset.type = "placeholder__video"; placeholder.controls = true; placeholder.className = - "relative aspect-square w-full h-full max-w-48 max-h-48 sm:max-w-none sm:max-h-none rounded-sm [&:not(:fullscreen)]:object-cover"; + "relative aspect-square w-full h-full rounded-sm [&:not(:fullscreen)]:object-cover"; const placeholder_loader = document.createElement("div"); placeholder_loader.dataset.type = "placeholder__video__loader";