Skip to content
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
3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Manifest Wingman — LLM API Tester</title>
<link rel="icon" href="/favicon.ico" sizes="any" />
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<meta name="theme-color" content="#1a1d23" media="(prefers-color-scheme: dark)" />
<meta name="theme-color" content="#faf8f5" />
<meta
Expand Down
Binary file added public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon.ico
Binary file not shown.
74 changes: 29 additions & 45 deletions public/logo.svg → public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/manifest-logo.png
Binary file not shown.
76 changes: 30 additions & 46 deletions public/logo-white.svg → public/wingman.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 5 additions & 11 deletions src/components/TopBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,11 @@ const TopBar: Component = () => {
title="manifest.build"
>
<img
src="/logo.svg"
alt="Manifest"
class="topbar__logo topbar__logo--light"
width="120"
/>
<img
src="/logo-white.svg"
alt=""
class="topbar__logo topbar__logo--dark"
width="120"
aria-hidden="true"
src="/wingman.svg"
alt="Wingman"
class="topbar__logo"
width="28"
height="28"
/>
</a>
<span class="topbar__divider" aria-hidden="true">
Expand Down
17 changes: 2 additions & 15 deletions src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -427,24 +427,11 @@ textarea {
}

.topbar__logo {
height: 22px;
width: auto;
height: 28px;
width: 28px;
display: block;
}

.topbar__logo--dark {
display: none;
}

@media (prefers-color-scheme: dark) {
.topbar__logo--light {
display: none;
}
.topbar__logo--dark {
display: block;
}
}

.topbar__divider {
font-size: 18px;
color: var(--text-faint);
Expand Down
Loading