We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a3625d commit f998182Copy full SHA for f998182
src/librustdoc/html/layout.rs
@@ -183,13 +183,13 @@ pub fn render<T: fmt::Display, S: fmt::Display>(
183
if layout.logo.is_empty() {
184
format!("<a href='{path}index.html'>\
185
<img src='{static_root_path}rust-logo{suffix}.png' \
186
- alt='logo' width='100' height='100'></a>",
+ alt='logo' width='100'></a>",
187
path=p,
188
static_root_path=static_root_path,
189
suffix=page.resource_suffix)
190
} else {
191
format!("<a href='{}index.html'>\
192
- <img src='{}' alt='logo' width='100' height='100'></a>",
+ <img src='{}' alt='logo' width='100'></a>",
193
p,
194
layout.logo)
195
}
0 commit comments