fix styles and added info in manifest and html

This commit is contained in:
Nicola Zambello 2020-03-08 12:33:01 +01:00
parent b17c2f8ed0
commit 8be2a4ce0f
3 changed files with 10 additions and 7 deletions

View file

@ -7,7 +7,7 @@
<meta name="theme-color" content="#000000" /> <meta name="theme-color" content="#000000" />
<meta <meta
name="description" name="description"
content="Web site created using create-react-app" content="Convert time to h"
/> />
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<!-- <!--
@ -24,7 +24,7 @@
work correctly both with client-side routing and a non-root public URL. work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`. Learn how to configure a non-root public URL by running `npm run build`.
--> -->
<title>React App</title> <title>TimeConvert</title>
</head> </head>
<body> <body>
<noscript>You need to enable JavaScript to run this app.</noscript> <noscript>You need to enable JavaScript to run this app.</noscript>

View file

@ -1,14 +1,16 @@
{ {
"manifest_version": 2, "manifest_version": 2,
"version": "1.0", "version": "0.1.0",
"name": "Convert time to h", "name": "TimeConvert",
"description": "Convert time to h",
"icons": { "icons": {
"192": "logo192.png", "192": "logo192.png",
"512": "logo512.png" "512": "logo512.png"
}, },
"browser_action": { "browser_action": {
"default_icon": "logo192.png", "default_icon": "logo192.png",
"default_title": "Converttime", "default_title": "TimeConvert",
"default_popup": "index.html" "default_popup": "index.html",
"browser_style": true
} }
} }

View file

@ -1,5 +1,5 @@
.App { .App {
/* padding: 1rem; */ padding: 1rem;
} }
.App * { .App * {
@ -10,6 +10,7 @@ h1 {
font-size: 36px; font-size: 36px;
font-weight: 300; font-weight: 300;
color: #0c0c0d; color: #0c0c0d;
margin-top: 0;
} }
.browser-style button.browser-style { .browser-style button.browser-style {