Fix Edge style "bug"

Fix manifest icon paths
This commit is contained in:
CheddarCrisp 2020-03-07 11:31:29 -05:00
parent 93f76dc7fa
commit 306d0914d5
3 changed files with 8 additions and 3 deletions

View file

@ -2,7 +2,7 @@
<browserconfig> <browserconfig>
<msapplication> <msapplication>
<tile> <tile>
<square150x150logo src="https://apps.jhollen.com/ncounter/mstile-150x150.png"/> <square150x150logo src="mstile-150x150.png"/>
<TileColor>#dce6ef</TileColor> <TileColor>#dce6ef</TileColor>
</tile> </tile>
</msapplication> </msapplication>

View file

@ -4,12 +4,12 @@
"description": "Counter app", "description": "Counter app",
"icons": [ "icons": [
{ {
"src": "icons/android-chrome-192x192.png", "src": "android-chrome-192x192.png",
"sizes": "192x192", "sizes": "192x192",
"type": "image/png" "type": "image/png"
}, },
{ {
"src": "icons/android-chrome-512x512.png", "src": "android-chrome-512x512.png",
"sizes": "512x512", "sizes": "512x512",
"type": "image/png" "type": "image/png"
} }

View file

@ -22,6 +22,11 @@ body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
} }
/* Button */
button {
border-radius: 0; /* Because Edge is trying to be "cute" */
}
:root { :root {
--background-color: #DCE6EF; --background-color: #DCE6EF;
--button-color: #3A86B7; --button-color: #3A86B7;