Skip to content

Commit da45b1d

Browse files
committed
fix(ui): adjust favicons settings
1 parent a47756e commit da45b1d

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

client/public/favicon.png

11.4 KB
Loading

client/public/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33

44
<head>
55
<meta charset="utf-8" />
6-
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" type="image/svg+xml" media="(prefers-color-scheme: light)" />
7-
<link rel="icon" href="%PUBLIC_URL%/favicon-dark.ico" type="image/svg+xml" media="(prefers-color-scheme: dark)" />
8-
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.svg" type="image/x-icon" media="(prefers-color-scheme: light)" />
9-
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon-dark.svg" type="image/x-icon"
10-
media="(prefers-color-scheme: dark)" />
6+
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" type="image/x-icon" media="(prefers-color-scheme: light)" />
7+
<link rel="icon" href="%PUBLIC_URL%/favicon-dark.ico" type="image/x-icon" media="(prefers-color-scheme: dark)" />
8+
<link rel="icon" href="%PUBLIC_URL%/favicon.svg" type="image/svg+xml" media="(prefers-color-scheme: light)" />
9+
<link rel="icon" href="%PUBLIC_URL%/favicon-dark.svg" type="image/svg+xml" media="(prefers-color-scheme: dark)" />
10+
<link rel="apple-touch-icon" href="%PUBLIC_URL%/favicon.png">
1111
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
1212
<meta name="theme-color" content="#000000" />
1313
<meta name="description" content="Projects is an open source project management software" />

client/public/manifest.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@
22
"name": "Projects",
33
"icons": [
44
{
5-
"src": "favicon.ico",
6-
"sizes": "64x64 32x32 24x24 16x16",
7-
"type": "image/x-icon"
5+
"src": "favicon.svg",
6+
"type": "image/svg+xml",
7+
"sizes": "any"
88
},
99
{
10-
"src": "logo192.png",
10+
"src": "favicon.png",
1111
"type": "image/png",
12-
"sizes": "192x192"
12+
"sizes": "512x512"
1313
},
1414
{
15-
"src": "logo512.png",
16-
"type": "image/png",
17-
"sizes": "512x512"
15+
"src": "favicon.ico",
16+
"sizes": "32x32",
17+
"type": "image/x-icon"
1818
}
1919
],
2020
"start_url": ".",
2121
"display": "standalone",
22-
"theme_color": "#22252a",
22+
"theme_color": "#3f5de7",
2323
"background_color": "#ffffff"
2424
}

0 commit comments

Comments
 (0)