✨ Fix all chrome Dev Tools warnings
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 251 KiB After Width: | Height: | Size: 49 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 192 KiB After Width: | Height: | Size: 153 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 161 KiB |
+21
-14
@@ -1,21 +1,28 @@
|
|||||||
{
|
{
|
||||||
"short_name": "Démineur",
|
"id": "/",
|
||||||
"name": "Démineur",
|
"short_name": "Minesweeper",
|
||||||
|
"name": "Minesweeper",
|
||||||
|
"description": "ReactJS made Minesweeper game",
|
||||||
|
"display": "standalone",
|
||||||
|
"orientation": "portrait",
|
||||||
|
"lang": "fr-FR",
|
||||||
|
"start_url": "/",
|
||||||
|
"dir": "left",
|
||||||
|
"theme_color": "#ffffff",
|
||||||
|
"background_color": "#598b8e",
|
||||||
|
"display_override": ["window-controls-overlay"],
|
||||||
"icons": [
|
"icons": [
|
||||||
{
|
|
||||||
"src": "favicon.ico",
|
|
||||||
"sizes": "64x64 32x32 24x24 16x16",
|
|
||||||
"type": "image/x-icon"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"src": "logo.png",
|
"src": "logo.png",
|
||||||
"type": "image/png",
|
"type": "image/png",
|
||||||
"sizes": "512x512"
|
"sizes": "512x512",
|
||||||
|
"purpose": "any"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "maskable_logo.png",
|
||||||
|
"type": "image/png",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"purpose": "maskable"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"start_url": ".",
|
|
||||||
"display": "standalone",
|
|
||||||
"theme_color": "#000000",
|
|
||||||
"background_color": "#ffffff"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 153 KiB |
@@ -56,6 +56,7 @@ const Home = () => {
|
|||||||
<p className='settingLabel'>Taille de la grille</p>
|
<p className='settingLabel'>Taille de la grille</p>
|
||||||
<select
|
<select
|
||||||
ref={sizeRef}
|
ref={sizeRef}
|
||||||
|
name='gridSize'
|
||||||
className='select'
|
className='select'
|
||||||
defaultValue={'12'}
|
defaultValue={'12'}
|
||||||
>
|
>
|
||||||
@@ -69,6 +70,7 @@ const Home = () => {
|
|||||||
<p className='settingLabel'>Difficulté</p>
|
<p className='settingLabel'>Difficulté</p>
|
||||||
<select
|
<select
|
||||||
ref={difficultyRef}
|
ref={difficultyRef}
|
||||||
|
name='difficulty'
|
||||||
className='select'
|
className='select'
|
||||||
defaultValue={'beginner'}
|
defaultValue={'beginner'}
|
||||||
>
|
>
|
||||||
|
|||||||
Reference in New Issue
Block a user