Add with 100% in main to solve overflow problem

This commit is contained in:
Sat Naing
2022-09-12 09:26:32 +06:30
parent 4d9b76efb2
commit a924d6e440
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ const { pageTitle, pageDesc } = Astro.props;
<style>
main {
@apply max-w-3xl mx-auto px-4 py-12;
@apply max-w-3xl mx-auto px-4 py-12 w-full;
}
h1 {
@apply font-semibold text-2xl sm:text-3xl;
+1 -1
View File
@@ -52,7 +52,7 @@ const { Content, frontmatter } = Astro.props.post;
<style>
main {
@apply max-w-3xl mx-auto px-4 py-12;
@apply max-w-3xl mx-auto px-4 py-12 w-full;
}
.post-title {
@apply font-semibold text-2xl text-skin-accent;