Skip to content

Commit

Permalink
Update font and page size for guide page
Browse files Browse the repository at this point in the history
  • Loading branch information
kamranahmedse committed Mar 20, 2023
1 parent 9321ac6 commit 648985c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/GuideHeader.astro
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const { author } = frontmatter;
<h1 class='text-2xl sm:text-5xl my-0 sm:my-3.5 font-bold'>
{frontmatter.title}
</h1>
<p class='hidden sm:block text-gray-400 text-md'>
<p class='hidden sm:block text-gray-400 text-xl'>
{frontmatter.description}
</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/MarkdownFile.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div
class='prose-blockquote:font-normal prose container prose-code:bg-transparent prose-h2:text-3xl prose-h2:mt-4 prose-h2:mb-2 prose-h3:mt-2 prose-img:mt-1'
class='prose-xl prose-blockquote:font-normal prose container prose-code:bg-transparent prose-h2:text-3xl prose-h2:mt-4 prose-h2:mb-2 prose-h3:mt-2 prose-img:mt-1'
>
<slot />
</div>
2 changes: 1 addition & 1 deletion src/pages/guides/[guideId].astro
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const { frontmatter: guideData } = guide;
>
<GuideHeader guide={guide} />

<div class='bg-gray-50 py-5 sm:py-10'>
<div class='py-5 sm:py-10 max-w-[700px] mx-auto'>
<MarkdownFile>
<guide.Content />
</MarkdownFile>
Expand Down

0 comments on commit 648985c

Please sign in to comment.