- commit
- 306d091
- parent
- 93f76dc
- author
- CheddarCrisp
- date
- 2020-03-07 17:31:29 +0100 CET
Fix Edge style "bug" Fix manifest icon paths
3 files changed,
+8,
-3
+1,
-1
1@@ -2,7 +2,7 @@
2 <browserconfig>
3 <msapplication>
4 <tile>
5- <square150x150logo src="https://apps.jhollen.com/ncounter/mstile-150x150.png"/>
6+ <square150x150logo src="mstile-150x150.png"/>
7 <TileColor>#dce6ef</TileColor>
8 </tile>
9 </msapplication>
+2,
-2
1@@ -4,12 +4,12 @@
2 "description": "Counter app",
3 "icons": [
4 {
5- "src": "icons/android-chrome-192x192.png",
6+ "src": "android-chrome-192x192.png",
7 "sizes": "192x192",
8 "type": "image/png"
9 },
10 {
11- "src": "icons/android-chrome-512x512.png",
12+ "src": "android-chrome-512x512.png",
13 "sizes": "512x512",
14 "type": "image/png"
15 }
+5,
-0
1@@ -22,6 +22,11 @@ body {
2 font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
3 }
4
5+/* Button */
6+button {
7+ border-radius: 0; /* Because Edge is trying to be "cute" */
8+}
9+
10 :root {
11 --background-color: #DCE6EF;
12 --button-color: #3A86B7;