Skip to content

Commit

Permalink
feat(site): improve blog post font sizing
Browse files Browse the repository at this point in the history
  • Loading branch information
cor committed Sep 26, 2023
1 parent 4ab9c58 commit 6f72060
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@

<style lang="postcss">
:global(.blog-post-container > h2) {
@apply text-5xl font-bold;
@apply text-3xl sm:text-5xl font-bold;
}
:global(.blog-post-container > h2 + span) {
@apply font-mono mb-2 text-lg;
@apply font-mono mb-2 mt-1 sm:text-lg;
}
:global(.blog-post-container > h2 + span > a) {
@apply text-accent;
}
:global(.blog-post-container > p) {
@apply text-xl mb-4;
@apply sm:text-xl mb-4;
}
</style>

0 comments on commit 6f72060

Please sign in to comment.