Make the logo in the navbar monochrome

This commit is contained in:
Patrick Walton 2018-01-04 14:43:37 -08:00
parent 275a937439
commit 4a71f79a78
3 changed files with 195 additions and 2 deletions

View File

@ -1,6 +1,6 @@
<nav class="navbar sticky-top navbar-expand-sm navbar-dark bg-dark">
<a class="navbar-brand" href="/">
<img id="pf-navbar-logo" alt="" src="/svg/demo/logo" width="30" class="mr-2">
<img id="pf-navbar-logo" alt="" src="/svg/demo/logo-bw" width="30" class="mr-2">
Pathfinder
</a>
<div class="collapse navbar-collapse">

View File

@ -103,10 +103,11 @@ static BUILTIN_FONTS: [(&'static str, &'static str); 4] = [
("inter-ui", "../../resources/fonts/inter-ui/Inter-UI-Regular.ttf"),
];
static BUILTIN_SVGS: [(&'static str, &'static str); 3] = [
static BUILTIN_SVGS: [(&'static str, &'static str); 4] = [
("tiger", "../../resources/svg/Ghostscript_Tiger.svg"),
("logo", "../../resources/svg/pathfinder_logo.svg"),
("icons", "../../resources/svg/material_design_icons.svg"),
("logo-bw", "../../resources/svg/pathfinder_logo_bw.svg"),
];
#[derive(Clone, Debug, PartialEq, Eq, Hash)]

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 278 KiB