Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1686. Replace Zarf Logo #1700

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed src/ui/images/png/global-navigation-zarf-logo.png
Binary file not shown.
Binary file modified src/ui/images/zarf-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 4 additions & 2 deletions src/ui/lib/components/global-navigation-bar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// SPDX-FileCopyrightText: 2021-Present The Zarf Authors
-->
<script lang="ts">
import ZarfLogoDark from '@images/png/global-navigation-zarf-logo.png';
import ZarfLogoDark from '@images/zarf-logo.png';

import { Paper, type SSX } from '@ui';
import ThemeToggle from './theme-toggle.svelte';
Expand Down Expand Up @@ -34,7 +34,9 @@
square
>
<div class="nav-right">
<a href="/"><img src={ZarfLogoDark} alt="Zarf logo link to home" /></a>
<a href="/">
<img src={ZarfLogoDark} height="48px" width="107px" alt="Zarf logo link to home" />
</a>
</div>
<div class="nav-left"><ThemeToggle /></div>
</Paper>