Remove top padding and updat paragraph italic

This commit is contained in:
Sat Naing
2022-09-17 00:35:22 +06:30
parent 2eff1781cd
commit 735ce8b0fd
+2 -2
View File
@@ -18,12 +18,12 @@ const { pageTitle, pageDesc } = Astro.props;
<style> <style>
main { main {
@apply max-w-3xl mx-auto px-4 py-12 w-full; @apply max-w-3xl mx-auto px-4 pb-12 w-full;
} }
h1 { h1 {
@apply font-semibold text-2xl sm:text-3xl; @apply font-semibold text-2xl sm:text-3xl;
} }
p { p {
@apply mt-2 mb-6; @apply mt-2 mb-6 italic;
} }
</style> </style>