diff --git a/src/build.tsx b/src/build.tsx index a37fbc0..1107dbd 100644 --- a/src/build.tsx +++ b/src/build.tsx @@ -153,7 +153,7 @@ function generateHTMLFile( ); fs.writeFileSync(output, `${html}`); - console.log(`Generated: ${output}`); + log.info(`Generated: ${output}`); } fs.cpSync("src/static", "out/static", { recursive: true }); diff --git a/src/static/imagePageUtils.js b/src/static/imagePageUtils.js index 72c100c..a77a11b 100644 --- a/src/static/imagePageUtils.js +++ b/src/static/imagePageUtils.js @@ -170,7 +170,6 @@ function _tmp_loadNav(url, iid) { unfavoriteButton.forEach((item) => item.classList.add("hidden")); }); }); - console.log(isFav) if (!isFav) { favoriteButton.forEach((item) => item.classList.remove("hidden")); } else { diff --git a/src/static/populateIndex.js b/src/static/populateIndex.js index 8cf2710..2e21f94 100644 --- a/src/static/populateIndex.js +++ b/src/static/populateIndex.js @@ -90,7 +90,6 @@ async function populateIndex() { pl ); }, 250); - console.log("video not supported"); } }); if (favs.length >= 11) { diff --git a/src/static/tailwind.css b/src/static/tailwind.css index 533e01d..df88e7b 100644 --- a/src/static/tailwind.css +++ b/src/static/tailwind.css @@ -521,21 +521,12 @@ } } @layer utilities { - .pointer-events-auto { - pointer-events: auto; - } - .pointer-events-none { - pointer-events: none; - } .collapse { visibility: collapse; } .invisible { visibility: hidden; } - .visible { - visibility: visible; - } .absolute { position: absolute; } @@ -563,42 +554,15 @@ .right-2 { right: calc(var(--spacing) * 2); } - .right-8 { - right: calc(var(--spacing) * 8); - } - .bottom-2 { - bottom: calc(var(--spacing) * 2); - } - .bottom-8 { - bottom: calc(var(--spacing) * 8); - } .left-0 { left: calc(var(--spacing) * 0); } - .z-4 { - z-index: 4; - } - .z-5 { - z-index: 5; - } .z-10 { z-index: 10; } .z-\[3\] { z-index: 3; } - .z-\[4\] { - z-index: 4; - } - .z-\[10\] { - z-index: 10; - } - .z-\[15\] { - z-index: 15; - } - .z-\[50\] { - z-index: 50; - } .\[grid-column\:span_2\] { grid-column: span 2; } @@ -683,9 +647,6 @@ .h-8 { height: calc(var(--spacing) * 8); } - .h-12 { - height: calc(var(--spacing) * 12); - } .h-14 { height: calc(var(--spacing) * 14); } @@ -710,9 +671,6 @@ .w-8 { width: calc(var(--spacing) * 8); } - .w-12 { - width: calc(var(--spacing) * 12); - } .w-14 { width: calc(var(--spacing) * 14); } @@ -809,9 +767,6 @@ .bg-gray-400\/50 { background-color: color-mix(in oklab, var(--color-gray-400) 50%, transparent); } - .bg-gray-600 { - background-color: var(--color-gray-600); - } .bg-orange-800 { background-color: var(--color-orange-800); } @@ -868,27 +823,15 @@ .text-\[\#faebeb\] { color: #faebeb; } - .text-gray-100 { - color: var(--color-gray-100); - } .text-gray-200 { color: var(--color-gray-200); } .text-gray-200\/75 { color: color-mix(in oklab, var(--color-gray-200) 75%, transparent); } - .text-gray-300 { - color: var(--color-gray-300); - } - .text-gray-500 { - color: var(--color-gray-500); - } .text-orange-400 { color: var(--color-orange-400); } - .text-slate-900 { - color: var(--color-slate-900); - } .text-white { color: var(--color-white); }