rustdoc: Fix font CSS for crate lists

I had put it in the wrong file in #76126. This should fix it now. Thank
you to @ollie27 for pointing this out!
This commit is contained in:
Camelid 2020-09-07 13:54:31 -07:00
parent 9fe551ae49
commit bf09a529ee
2 changed files with 4 additions and 3 deletions

View file

@ -126,6 +126,10 @@ h1, h2, h3, h4,
font-family: "Fira Sans", sans-serif; font-family: "Fira Sans", sans-serif;
} }
.content ul.crate a.crate {
font: 16px/1.6 "Fira Sans";
}
ol, ul { ol, ul {
padding-left: 25px; padding-left: 25px;
} }

View file

@ -178,9 +178,6 @@ pre {
.content span.externcrate, .content span.mod, .content a.mod { .content span.externcrate, .content span.mod, .content a.mod {
color: #acccf9; color: #acccf9;
} }
.content ul.crate a.crate {
font: 16px/1.6 "Fira Sans";
}
.content span.struct, .content a.struct { .content span.struct, .content a.struct {
color: #ffa0a5; color: #ffa0a5;
} }