Skip to content

Commit 0071dea

Browse files
committed
feat: enhance media info overlay with improved styling and readability
1 parent 529187b commit 0071dea

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/pages/Home.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -522,11 +522,11 @@ const Home: React.FC = () => {
522522
</button>
523523

524524
{/* Media Info Overlay */}
525-
<div className="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black/80 to-transparent p-4">
526-
<h3 className="mb-1 text-lg font-semibold text-white">
525+
<div className="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black via-black/90 to-transparent px-6 py-6">
526+
<h3 className="mb-2 text-2xl font-bold text-white drop-shadow-lg md:text-3xl">
527527
{mediaItems[currentMediaIndex].title}
528528
</h3>
529-
<p className="text-sm text-gray-200">
529+
<p className="text-base leading-relaxed text-gray-100 drop-shadow-md md:text-lg">
530530
{mediaItems[currentMediaIndex].description}
531531
</p>
532532
</div>

0 commit comments

Comments
 (0)