mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-27 11:07:44 +00:00
Fix the platform icons not showing up in some browsers
This commit is contained in:
parent
3c09c747dd
commit
f7d53889e8
2 changed files with 3 additions and 3 deletions
4
docs/theme/head.hbs
vendored
4
docs/theme/head.hbs
vendored
|
@ -7,7 +7,7 @@
|
||||||
}
|
}
|
||||||
.additional {
|
.additional {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0em;
|
top: 0.5em;
|
||||||
right: 0;
|
right: 0;
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 5px;
|
gap: 5px;
|
||||||
|
@ -15,7 +15,7 @@
|
||||||
font-size: 1.3em;
|
font-size: 1.3em;
|
||||||
}
|
}
|
||||||
.platforms {
|
.platforms {
|
||||||
font-size: 1.5em;
|
font-size: 2rem;
|
||||||
}
|
}
|
||||||
dd > p {
|
dd > p {
|
||||||
margin-top: 0.2em;
|
margin-top: 0.2em;
|
||||||
|
|
|
@ -144,7 +144,7 @@ impl<'a, 'b> MDWriter<'a, 'b> {
|
||||||
.iter()
|
.iter()
|
||||||
.any(|u| u == self.name)
|
.any(|u| u == self.name)
|
||||||
{
|
{
|
||||||
writeln!(self.w, "<i class=\"fa-brands fa-{}\"></i>", icon)?;
|
writeln!(self.w, "<i class=\"fa fa-brands fa-{}\"></i>", icon)?;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
writeln!(self.w, "</div>")?;
|
writeln!(self.w, "</div>")?;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue