fixed back button and coloring

This commit is contained in:
2026-03-26 01:38:00 +01:00
parent 53db329cc5
commit 37c8e231c3
4 changed files with 53 additions and 16 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ const { slug, excerpt, formatSlug } = Astro.props;
<h2 class="text-xl md:text-3xl font-bold text-lavender group-hover:text-mauve transition-colors mb-2 md:mb-3">
{formatSlug(slug)}
</h2>
<p class="text-text text-sm md:text-base leading-relaxed line-clamp-3">
<p class="text-text text-sm md:text-base leading-relaxed line-clamp-3" style="color: var(--text) !important;">
{excerpt || `Read more about ${formatSlug(slug)}...`}
</p>
</div>