Strange spacing CSS bug in blog excerpts #332
-
Would anyone know of a way to fix this and does it maybe have something to do with Tailwind? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
If you look in the SinglePost.astro component you will see p The text-justify option is causing this spacing. Try removing the text-justify and it should all justify to the left with regular spacing. |
Beta Was this translation helpful? Give feedback.
-
You're totally right. That worked perfectly. Thanks so much! Leaving this open so they can update the theme if needed. |
Beta Was this translation helpful? Give feedback.
If you look in the SinglePost.astro component you will see
p
class="max-w-3xl mx-auto mt-4 mb-8 px-4 sm:px-6 text-xl md:text-2xl text-muted dark:text-slate-400 text-justify"
>
{post.excerpt}
The text-justify option is causing this spacing. Try removing the text-justify and it should all justify to the left with regular spacing.