Skip to content

Commit f5f2af0

Browse files
committed
icons and space
1 parent 53515f3 commit f5f2af0

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

components/nav.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { IconProp } from "@fortawesome/fontawesome-svg-core";
2-
import { faCommentDots, faFile } from "@fortawesome/free-solid-svg-icons";
2+
import { faCommentDots, faFile, faFileCode } from "@fortawesome/free-solid-svg-icons";
33

44
export const Tools: Record<
55
string,
@@ -34,35 +34,35 @@ export const Tools: Record<
3434
{
3535
name: "Yaml Validator",
3636
short: "Yaml",
37-
icon: faFile,
38-
description: "Validate Yaml Files",
37+
icon: faFileCode,
38+
description: "Check your config before you wreck your config",
3939
link: "/validators/yaml",
4040
},
4141
{
4242
name: "Properties Validator",
4343
short: "Properties",
44-
icon: faFile,
44+
icon: faFileCode,
4545
description: "Validate Properties Files",
4646
link: "/validators/properties",
4747
},
4848
{
4949
name: "Toml Validator",
5050
short: "Toml",
51-
icon: faFile,
51+
icon: faFileCode,
5252
description: "Validate Toml Files",
5353
link: "/validators/toml",
5454
},
5555
{
5656
name: "Hocon Validator",
5757
short: "Hocon",
58-
icon: faFile,
58+
icon: faFileCode,
5959
description: "Validate Hocon Files",
6060
link: "/validators/hocon",
6161
},
6262
{
6363
name: "XML Validator",
6464
short: "XML",
65-
icon: faFile,
65+
icon: faFileCode,
6666
description: "Validate XML Files",
6767
link: "/validators/xml",
6868
},

pages/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ function ToolboxCard({
8888
return (
8989
<Link href={link} passHref>
9090
<div
91-
css={tw`p-3 rounded-2xl bg-white/10 hover:bg-white/20 text-white hover:cursor-pointer width[13rem] h-48 block grid grid-cols-1 place-items-center mix-blend-multiply`}
91+
css={tw`p-3 rounded-2xl bg-white/10 hover:bg-white/20 text-white hover:cursor-pointer width[15rem] h-48 block grid grid-cols-1 place-items-center mix-blend-multiply`}
9292
>
9393
<FontAwesomeIcon icon={icon} size={"3x"} />
9494
<p css={tw`font-bold text-lg margin-bottom[-1rem]`}>{name}</p>

0 commit comments

Comments
 (0)