From db651d5a55c28682f4efb2add22cd01e0ce60e62 Mon Sep 17 00:00:00 2001 From: katelya Date: Wed, 3 Sep 2025 22:38:12 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=B0=83=E6=95=B4=E9=9B=86=E6=95=B0?= =?UTF-8?q?=E7=BD=91=E6=A0=BC=E7=9A=84=E5=88=97=E5=AE=BD=E5=92=8C=E9=97=B4?= =?UTF-8?q?=E8=B7=9D=EF=BC=8C=E4=BC=98=E5=8C=96=E5=B8=83=E5=B1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/EpisodeSelector.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/EpisodeSelector.tsx b/src/components/EpisodeSelector.tsx index a266529..f9a8254 100644 --- a/src/components/EpisodeSelector.tsx +++ b/src/components/EpisodeSelector.tsx @@ -321,7 +321,7 @@ const EpisodeSelector: React.FC = ({ {/* 集数网格 */} -
+
{(() => { const len = currentEnd - currentStart + 1; const episodes = Array.from({ length: len }, (_, i) => @@ -338,7 +338,7 @@ const EpisodeSelector: React.FC = ({ e.stopPropagation(); handleEpisodeClick(episodeNumber); }} - className={`w-full h-8 flex items-center justify-center text-sm font-medium rounded transition-all duration-200 cursor-pointer + className={`w-full h-10 flex items-center justify-center text-sm font-medium rounded-md transition-all duration-200 cursor-pointer ${ isActive ? 'bg-green-500 text-white shadow-lg shadow-green-500/25 dark:bg-green-600'