Skip to content

Commit 5c6ac8f

Browse files
committed
Merge branch 'claude/logo-update'
2 parents 8930f37 + c589be1 commit 5c6ac8f

3 files changed

Lines changed: 10 additions & 19 deletions

File tree

public/logo.svg

Lines changed: 3 additions & 8 deletions
Loading

src/components/LocationBar.vue

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -126,13 +126,9 @@ function geolocate(): void {
126126
<!-- Wordmark + view switcher ------------------------------------ -->
127127
<div class="flex items-center gap-2.5 sm:gap-5">
128128
<a href="/" class="group flex items-center gap-2 leading-none">
129-
<!-- The mark itself: a hairline circle with a sodium dot in the
130-
centre — a stylised barometer dial. -->
131-
<span class="relative inline-block size-5 shrink-0">
132-
<span class="border-paper-300/60 absolute inset-0 rounded-full border" aria-hidden="true" />
133-
<span class="bg-sodium-300 absolute top-1/2 left-1/2 size-1.5 -translate-x-1/2 -translate-y-1/2 rounded-full" aria-hidden="true" />
134-
<span class="bg-sodium-300/70 absolute top-[1px] left-1/2 h-1 w-px -translate-x-1/2" aria-hidden="true" />
135-
</span>
129+
<!-- The mark: the stylised barometer dial, shared with the
130+
favicon / PWA icons via the single source in public/logo.svg. -->
131+
<img src="/logo.svg" alt="" aria-hidden="true" class="size-5 shrink-0" />
136132
<span class="hidden text-lg leading-none font-semibold tracking-tight sm:inline"
137133
><span class="text-paper-50">Meteo</span><span class="text-sodium-300">Compare</span></span
138134
>

vite.config.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,17 +55,17 @@ export default defineConfig({
5555
htmlPreset: "2023",
5656
preset: {
5757
transparent: { sizes: [64, 192, 512], favicons: [[48, "favicon.ico"]] },
58-
maskable: { sizes: [512], padding: 0 },
59-
apple: { sizes: [180], padding: 0 },
58+
maskable: { sizes: [512], padding: 0.15, resizeOptions: { background: "#050810" } },
59+
apple: { sizes: [180], padding: 0.15, resizeOptions: { background: "#050810" } },
6060
},
6161
image: "public/logo.svg",
6262
},
6363
manifest: {
6464
name: "MeteoCompare",
6565
short_name: "MeteoCompare",
6666
description: "Multi-model weather forecast comparison with a weighted aggregate and confidence score.",
67-
theme_color: "#0f172a",
68-
background_color: "#0f172a",
67+
theme_color: "#050810",
68+
background_color: "#050810",
6969
display: "standalone",
7070
start_url: "/",
7171
scope: "/",

0 commit comments

Comments
 (0)