fix: sequentially order headers
This commit is contained in:
parent
17d7a3d97e
commit
0ca87a43e2
5 changed files with 11 additions and 11 deletions
|
@ -149,12 +149,12 @@ h1, h2, h3, h4, h5, h6 {
|
|||
font-weight: var(--font-weight-bold);
|
||||
}
|
||||
|
||||
h1 { font-size: var(--font-size-2xl) }
|
||||
h2 { font-size: var(--font-size-xl) }
|
||||
h3 { font-size: var(--font-size-lg) }
|
||||
h4 { font-size: var(--font-size-base) }
|
||||
h5 { font-size: var(--font-size-md) }
|
||||
h6 { font-size: var(--font-size-sm) }
|
||||
h1 { font-size: var(--font-size-xl) }
|
||||
h2 { font-size: var(--font-size-lg) }
|
||||
h3 { font-size: var(--font-size-base) }
|
||||
h4 { font-size: var(--font-size-md) }
|
||||
h5 { font-size: var(--font-size-sm) }
|
||||
h6 { font-size: var(--font-size-xs) }
|
||||
|
||||
.section-header-wrapper {
|
||||
display: flex;
|
||||
|
@ -435,7 +435,7 @@ code {
|
|||
/* articles */
|
||||
article {
|
||||
& h2 {
|
||||
line-height: var(--line-height-2xl);
|
||||
line-height: var(--line-height-lg);
|
||||
margin: 0 0 var(--sizing-lg);
|
||||
transition-property: color;
|
||||
}
|
||||
|
|
Reference in a new issue