diff --git a/assets/style.css b/assets/style.css index f49a915..e7709d1 100644 --- a/assets/style.css +++ b/assets/style.css @@ -40,6 +40,7 @@ body { .header a { text-decoration: none; + transition: transform 0.7s ease; } .header a:hover { diff --git a/manifest.json b/manifest.json index 846cbcb..4b15d7c 100644 --- a/manifest.json +++ b/manifest.json @@ -1,12 +1,11 @@ { "name": "Stream.io", "short_name": "streamio", - "theme_color": "rgba(0,0,0,0.5)", - "background_color": "rgba(0,0,0,0.1)", + "theme_color": "darkgrey", + "background_color": "lightgrey", "display": "standalone", "orientation": "portrait", - "scope": "/", - "start_url": "/", + "start_url": ".", "icons": [ { "src": "/assets/icon-192x192.png", diff --git a/serviceworker.js b/serviceworker.js index 0d3ad56..5caa3cf 100644 --- a/serviceworker.js +++ b/serviceworker.js @@ -1,6 +1,7 @@ const staticCacheName = 's-streamio-v1' const assetUrls = [ + '.', 'index.html', '/assets/script.js', '/assets/style.css',