Update thumbnail CSS in generateSite.js to improve visual presentation by adjusting the transform scale from 1.1 to 0.95, enhancing the loading experience and overall aesthetics of the site.

This commit is contained in:
2024-12-28 11:43:21 -05:00
parent c9a57027a6
commit 3920a68c6e

View File

@@ -69,7 +69,7 @@ async function generateSite() {
} }
.thumbnail { .thumbnail {
filter: blur(10px); filter: blur(10px);
transform: scale(1.1); transform: scale(.95);
opacity: 1; opacity: 1;
} }
.full-image { .full-image {