fix: header consistency

This commit is contained in:
Cory Dransfeldt 2024-06-12 13:45:52 -07:00
parent 9f8a6cde5f
commit 2c015c8538
No known key found for this signature in database
2 changed files with 11 additions and 9 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "19.2.0", "version": "19.2.1",
"description": "The source for my personal site. Built using 11ty.", "description": "The source for my personal site. Built using 11ty.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -161,9 +161,9 @@ h1, h2, h3, h4, h5, h6 {
margin: var(--sizing-base) 0; margin: var(--sizing-base) 0;
} }
h1 { font-size: var(--font-size-3xl) } h1 { font-size: var(--font-size-2xl) }
h2 { font-size: var(--font-size-2xl) } h2 { font-size: var(--font-size-xl) }
h3 { font-size: var(--font-size-xl) } h3 { font-size: var(--font-size-lg) }
h4 { font-size: var(--font-size-base) } h4 { font-size: var(--font-size-base) }
h5 { font-size: var(--font-size-md) } h5 { font-size: var(--font-size-md) }
h6 { font-size: var(--font-size-sm) } h6 { font-size: var(--font-size-sm) }
@ -274,7 +274,6 @@ th {
justify-content: space-between; justify-content: space-between;
& h1 { & h1 {
font-size: var(--font-size-2xl);
font-weight: var(--font-weight-extrabold); font-weight: var(--font-weight-extrabold);
margin: 0; margin: 0;
padding: 0; padding: 0;
@ -613,14 +612,17 @@ li {
/* screens: md */ /* screens: md */
@media screen and (min-width: 768px) { @media screen and (min-width: 768px) {
h1 { font-size: var(--font-size-3xl) }
h2 { font-size: var(--font-size-2xl) }
h3 { font-size: var(--font-size-xl) }
h4 { font-size: var(--font-size-lg) }
h5 { font-size: var(--font-size-base) }
h6 { font-size: var(--font-size-md) }
main { main {
max-width: 768px; max-width: 768px;
} }
.main-title h1 {
font-size: var(--font-size-3xl);
}
.section-header-wrapper { .section-header-wrapper {
flex-direction: row; flex-direction: row;
} }