Skip to content

Commit 5e5c183

Browse files
committed
Small cleanup
1 parent 50ab659 commit 5e5c183

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

public/index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
<meta name="theme-color" content="#000000" />
88
<meta
99
name="description"
10-
content="Download icons in a clean and customized fashion!"
10+
content="Download icon fonts as PNG's"
1111
/>
1212
<meta
1313
name="keywords"
1414
content="icons, clean icons, font awesome, download, font, fa2png"
1515
/>
1616
<meta property="og:title" content="CleanIcons" />
17-
<meta property="og:description" content="Download icons in a clean and customized fashion!" />
17+
<meta property="og:description" content="Download icon fonts as PNG's" />
1818
<meta property="og:type" content="website" />
1919
<meta property="og:url" content="https://cleanicons.xyz" />
2020
<meta property="og:image" content="https://cleanicons.xyz/logo512.png" />
@@ -37,7 +37,7 @@
3737
work correctly both with client-side routing and a non-root public URL.
3838
Learn how to configure a non-root public URL by running `npm run build`.
3939
-->
40-
<title>CleanIcons</title>
40+
<title>CleanIcons - Download Icon Fonts as PNG's</title>
4141

4242
</head>
4343
<body>

src/App.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class App extends Component {
2121
textAlign="left"
2222
as="h1"
2323
>
24-
Cleanic<i className="fas fa-adjust" />ns
24+
Cleanicons
2525
</Header>
2626
</Menu.Item>
2727
<Menu.Menu position='right'>

src/IconPreview.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ class IconPreview extends Component {
292292
return (
293293
<components.Option {...newProps} className="select-option">
294294
{props.children}
295-
<span className="icon-wrap">{data.label && <i className={`${data.baseClass} fa-${data.label}`} />}</span>
295+
{data.label && <span className="icon-wrap"><span className={`${data.baseClass} fa-${data.label}`} /></span>}
296296
</components.Option>
297297
);
298298
}
@@ -346,7 +346,7 @@ class IconPreview extends Component {
346346
<Form.Field>
347347
<Label color="teal" size="big">
348348
Size: <span id="icon-size">{size}px<br /><small>Adjusting size won't update preview, and only affects the downloading of the icon.</small></span>
349-
<Input type="range" name="size" min="32" max={CANVAS_SIZE} step="1" value={size} name="size" onChange={this.handleInputChange} />
349+
<Input type="range" name="size" min="32" max={CANVAS_SIZE} step="1" value={size} onChange={this.handleInputChange} />
350350
</Label>
351351
</Form.Field>
352352
<Form.Field inline className="center">

0 commit comments

Comments
 (0)