Skip to content

Commit

Permalink
Replace numeric font-weight 300 with normal
Browse files Browse the repository at this point in the history
None of the typefaces specified in the stylesheet appear to have
extended weight mappings, so even at `300` they would default to
`normal` anyway.
  • Loading branch information
karlstolley committed Nov 19, 2019
1 parent 0e7ed5c commit cb0b2cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions _sass/_ed.scss
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ a:focus {
h1, h2, h3, h4, h5, h6 {
font-family: $heading-font;
margin-bottom: .5rem;
font-weight: 300;
font-weight: normal;
color: $heading-color;
letter-spacing: -.025rem;
line-height: 1.25;
Expand Down Expand Up @@ -246,7 +246,7 @@ tbody tr:nth-child(odd) th {
display: none; /* This is an accessibility no-no */
font-family: $heading-font;
font-size: .88rem;
font-weight: 300;
font-weight: normal;
letter-spacing: .05rem;
}

Expand Down Expand Up @@ -607,7 +607,7 @@ ul.poetry {
.poem .byline,
.poetry .byline {
font-style: italic;
font-weight: 300;
font-weight: normal;
letter-spacing: 0;
margin-top: -.5rem;
}
Expand Down

0 comments on commit cb0b2cb

Please sign in to comment.