Skip to content

Commit

Permalink
style: apply default styles to headings
Browse files Browse the repository at this point in the history
  • Loading branch information
steveoh committed Jul 31, 2024
1 parent 4f061f2 commit 3d24797
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,25 @@
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}

h1 {
@apply text-3xl font-bold md:text-4xl;
}
h2 {
@apply text-2xl font-bold md:text-3xl;
}
h3 {
@apply text-xl font-bold md:text-2xl;
}
h4 {
@apply text-lg font-bold md:text-xl;
}
h5 {
@apply text-base font-bold md:text-lg;
}
h6 {
@apply text-sm font-bold md:text-base;
}

@font-face {
font-family: 'SourceSansPro-Regular';
src: url('/fonts/SourceSans3-Regular.otf.woff2') format('woff2');
Expand Down

0 comments on commit 3d24797

Please sign in to comment.