Skip to content

Commit

Permalink
Paragraphs change default line-height (#1780)
Browse files Browse the repository at this point in the history
  • Loading branch information
iprzybysz committed Jul 17, 2023
1 parent 6743eef commit 47624b6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions site/assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,8 @@ h1 {

code {
@apply text-red-600 dark:text-red-400;
}

p {
@apply leading-[1.6];
}
6 changes: 5 additions & 1 deletion src/scss/tailwind.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,13 @@
@tailwind utilities;

h1 {
@apply mt-12 mb-2 text-5xl font-bold;
@apply mb-2 mt-12 text-5xl font-bold;
}

code {
@apply text-red-600 dark:text-red-400;
}

p {
@apply leading-[1.6];
}

0 comments on commit 47624b6

Please sign in to comment.