From 04991b59fc4fd6e4e9ebd9dd329eab501981b998 Mon Sep 17 00:00:00 2001 From: Zhangyu Date: Mon, 26 Aug 2024 09:21:07 +0000 Subject: [PATCH] * [task#126408] modify image width of thumbnail. --- lib/zin/wg/thumbnail/v1.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/zin/wg/thumbnail/v1.php b/lib/zin/wg/thumbnail/v1.php index 8d6d694425..61f9eb090a 100644 --- a/lib/zin/wg/thumbnail/v1.php +++ b/lib/zin/wg/thumbnail/v1.php @@ -45,12 +45,12 @@ class thumbnail extends wg ( div ( - setClass('flex items-center justify-center cursor-pointer bg-gray-100 w-full h-60'), + setClass('flex items-center justify-center cursor-pointer bg-white w-full h-60 '), setData(array('on' => 'click', 'call' => 'uploadThumbnail')), img ( setID('thumbnail-img'), - setClass('w-full h-full' . ($src ? '' : ' hidden')), + setClass('h-full' . ($src ? '' : ' hidden')), set::src($src), set::title($tips) ),