From 8b6e0cbebbdd9f4ebbbf9a6e388ffa675545d68c Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Sun, 2 Feb 2025 23:48:09 +0500 Subject: [PATCH] fix video page title --- src/build.tsx | 4 ++-- src/static/tailwind.css | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/build.tsx b/src/build.tsx index 5d31894..2546205 100644 --- a/src/build.tsx +++ b/src/build.tsx @@ -226,7 +226,7 @@ generateHTMLFile( ); generateHTMLFile( - "Wah-Collection/Image:", + "Wah-Collection/Image", "/image/", `View the full image on the WAH-Collection`, [ @@ -237,7 +237,7 @@ generateHTMLFile( ); generateHTMLFile( - "Wah-Collection/Images", + "Wah-Collection/Videos", "/videos/", `Video page of Wah-Collection | ${videos.length} Videos`, [ diff --git a/src/static/tailwind.css b/src/static/tailwind.css index f934900..89e688e 100644 --- a/src/static/tailwind.css +++ b/src/static/tailwind.css @@ -527,6 +527,9 @@ .invisible { visibility: hidden; } + .visible { + visibility: visible; + } .absolute { position: absolute; }