Skip to content

Commit

Permalink
Fix font weight on types, methods and associated types/consts
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Jun 26, 2021
1 parent 3ddb78a commit a5dd8d9
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/librustdoc/html/static/rustdoc.css
Expand Up @@ -146,9 +146,15 @@ h1.fqn > .in-band > a:hover {
h2, h3, h4 {
border-bottom: 1px solid;
}
.impl, .impl-items .method,
.impl-items .type, .impl-items .associatedconstant,
.impl-items .associatedtype {
.impl,
.impl-items .method,
.methods .method,
.impl-items .type,
.methods .type,
.impl-items .associatedconstant,
.methods .associatedconstant,
.impl-items .associatedtype,
.methods .associatedtype {
flex-basis: 100%;
font-weight: 600;
margin-top: 16px;
Expand Down

0 comments on commit a5dd8d9

Please sign in to comment.