Skip to content

Commit

Permalink
Add style for linked headers
Browse files Browse the repository at this point in the history
  • Loading branch information
jamigibbs committed Jun 20, 2024
1 parent c19ee72 commit 17fb105
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,27 +80,46 @@ h6 {

h1 {
@include h1();
a {
@include h1();
}
}

h2 {
@include h2();
a {
@include h2();
}
}

h3 {
@include h3();
a {
@include h3();
}
}

h4 {
@include h4();
a {
@include h4();
}
}

h5 {
@include h5();
a {
@include h5();
}
}

h6 {
@include h6();
font-family: $font-sans;
a {
@include h6();
font-family: $font-sans;
}
}

// Remove user agent styles
Expand Down

0 comments on commit 17fb105

Please sign in to comment.