Skip to content

Commit f183bfb

Browse files
committed
Update site.webmanifest with new image sizes
1 parent 7b9ad4e commit f183bfb

13 files changed

+22
-7
lines changed

public/android-chrome-192x192.png

3.03 KB
Loading

public/android-chrome-384x384.png

14.3 KB
Loading

public/android-chrome-512x512.png

39.6 KB
Loading

public/apple-touch-icon.png

4.45 KB
Loading

public/favicon-16x16.png

-33 Bytes
Loading

public/favicon-32x32.png

282 Bytes
Loading

public/favicon.ico

0 Bytes
Binary file not shown.

public/mstile-150x150.png

2.41 KB
Loading

public/site.webmanifest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"type": "image/png"
99
},
1010
{
11-
"src": "/android-chrome-512x512.png",
12-
"sizes": "512x512",
11+
"src": "/android-chrome-384x384.png",
12+
"sizes": "384x384",
1313
"type": "image/png"
1414
}
1515
],

src/components/layout/TheNavbar.vue

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<script setup lang="ts">
22
const navigation = useNavigationStore()
33
const route = useRoute()
4+
const isDark = useDark()
45
56
// const timeAgo = useTimeAgo(new Date(2023, 12, 29, 15, 15))
67
</script>
@@ -18,8 +19,12 @@ const route = useRoute()
1819
<div class="mr-3 flex flex-shrink-0 items-center">
1920
<router-link to="/">
2021
<img
21-
class="h-5 w-auto"
22-
src="https://raw.githubusercontent.com/wilfredinni/merken/master/static/merken/img/snake.svg"
22+
class="h-7 w-auto"
23+
:src="
24+
isDark
25+
? 'https://raw.githubusercontent.com/wilfredinni/python-cheatsheet/refs/heads/master/public/logo.svg'
26+
: 'https://raw.githubusercontent.com/wilfredinni/python-cheatsheet/refs/heads/master/public/logo-light.svg'
27+
"
2328
alt="python-cheatsheet"
2429
height="10"
2530
width="10"

0 commit comments

Comments
 (0)