From 21fb0134875b87d4f5bf3572f00438c1da0350a6 Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Tue, 2 Sep 2025 10:58:17 +0000 Subject: [PATCH] Improve video card title and description display with better font styling Reorders title and description elements in the VideoCard component and updates the description's font size and weight. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 890577b1-c154-40a4-a177-a0c6d55320c3 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/890577b1-c154-40a4-a177-a0c6d55320c3/S0hX96S --- client/src/components/video-card.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/src/components/video-card.tsx b/client/src/components/video-card.tsx index 08517b3..de13280 100644 --- a/client/src/components/video-card.tsx +++ b/client/src/components/video-card.tsx @@ -213,12 +213,12 @@ export default function VideoCard({ video, onClick, className = "", hideOverlay {!showPreview && !hideOverlay && (
-

- {video.title.split(' - ')[1] || video.title} -

-

+

{video.title.split(' - ')[0] || 'go4.video'}

+

+ {video.title.split(' - ')[1] || video.title} +

)}