fix: fix heading style in posts/<page-num> layouts

Heading styles not applying properly in Main.astro layout. Fix this problem by applying id selector.
This commit is contained in:
satnaing
2022-11-03 18:51:28 +06:30
parent c1df953a35
commit 5eeea6639e
+3 -3
View File
@@ -17,13 +17,13 @@ const { pageTitle, pageDesc } = Astro.props;
</main> </main>
<style> <style>
main { #main-content {
@apply max-w-3xl mx-auto px-4 pb-12 w-full; @apply max-w-3xl mx-auto px-4 pb-12 w-full;
} }
h1 { #main-content h1 {
@apply font-semibold text-2xl sm:text-3xl; @apply font-semibold text-2xl sm:text-3xl;
} }
p { #main-content p {
@apply mt-2 mb-6 italic; @apply mt-2 mb-6 italic;
} }
</style> </style>