Commit 4131268b authored by Moody Salem's avatar Moody Salem Committed by GitHub

Icons (#744)

* Manifest icons

* Add touch icons
parent c365a5ec
...@@ -2,9 +2,12 @@ ...@@ -2,9 +2,12 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" /> <link rel="shortcut icon" type="image/png" href="%PUBLIC_URL%/favicon.png" />
<link rel="apple-touch-icon" sizes="192x192" href="%PUBLIC_URL%/images/192x192_App_Icon.png" />
<link rel="apple-touch-icon" sizes="512x512" href="%PUBLIC_URL%/images/512x512_App_Icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" /> <meta name="theme-color" content="#ff007a" />
<meta name="fortmatic-site-verification" content="j93LgcVZk79qcgyo" /> <meta name="fortmatic-site-verification" content="j93LgcVZk79qcgyo" />
<!-- <!--
manifest.json provides metadata used when your web app is installed on a manifest.json provides metadata used when your web app is installed on a
......
...@@ -3,13 +3,22 @@ ...@@ -3,13 +3,22 @@
"name": "Uniswap", "name": "Uniswap",
"icons": [ "icons": [
{ {
"src": "favicon.ico", "src": "/images/192x192_App_Icon.png",
"sizes": "64x64 32x32 24x24 16x16", "sizes": "192x192",
"type": "image/x-icon" "type": "image/png",
"purpose": "any maskable"
},
{
"src": "/images/512x512_App_Icon.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
} }
], ],
"start_url": ".", "start_url": "/",
"scope": "/",
"orientation": "portrait",
"display": "standalone", "display": "standalone",
"theme_color": "#000000", "theme_color": "#ff007a",
"background_color": "#ffffff" "background_color": "#fff"
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment