Skip to content

Commit

Permalink
actualizado favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinGrajeda committed Aug 28, 2022
1 parent 27fd97b commit e64156a
Show file tree
Hide file tree
Showing 13 changed files with 43 additions and 26 deletions.
Binary file modified public/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/android-chrome-256x256.png
Binary file not shown.
Binary file added public/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion public/browserconfig.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#ffffff</TileColor>
<TileColor>#f3f3f3</TileColor>
</tile>
</msapplication>
</browserconfig>
Binary file modified public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon.ico
Binary file not shown.
20 changes: 10 additions & 10 deletions public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
"name": "Generate gradient images",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
"src": "android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-256x256.png",
"sizes": "256x256",
"type": "image/png"
"src": "android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}
"theme_color": "#f3f3f3",
"background_color": "#f3f3f3"
}
Binary file modified public/mstile-150x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 29 additions & 14 deletions public/safari-pinned-tab.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ body{
background-color: #f3f3f3;
font-weight: normal;
color:var(--secundario);
overscroll-behavior-y: contain;
}
*:not(i){
font-family: 'Montserrat', sans-serif;
Expand Down Expand Up @@ -347,6 +348,7 @@ button:hover .fa-arrows-rotate{
height: 100%;
overflow: scroll;
padding: 10px;
overflow-x: hidden;
}
.colorsMiddle{
overflow: visible;
Expand Down
2 changes: 1 addition & 1 deletion src/components/RangeSelectors.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function RangeSelectors(props) {
<label htmlFor="noiseRatio"><h2>Noise</h2></label>
<div className="range">
<i className="fa-solid fa-border-all"></i>
<input type="range" name="noiseRatio" id="noiseRatio" value={props.noiseRatio} min="0" max="0.06" step="any" onChange={props.handleChange}></input>
<input type="range" name="noiseRatio" id="noiseRatio" value={props.noiseRatio} min="0" max="0.08" step="any" onChange={props.handleChange}></input>
<i className="fa-solid fa-border-none"></i>
</div>
<div className="line"></div>
Expand Down

0 comments on commit e64156a

Please sign in to comment.