File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
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" ;
3
3
4
4
export const Tools : Record <
5
5
string ,
@@ -34,35 +34,35 @@ export const Tools: Record<
34
34
{
35
35
name : "Yaml Validator" ,
36
36
short : "Yaml" ,
37
- icon : faFile ,
38
- description : "Validate Yaml Files " ,
37
+ icon : faFileCode ,
38
+ description : "Check your config before you wreck your config " ,
39
39
link : "/validators/yaml" ,
40
40
} ,
41
41
{
42
42
name : "Properties Validator" ,
43
43
short : "Properties" ,
44
- icon : faFile ,
44
+ icon : faFileCode ,
45
45
description : "Validate Properties Files" ,
46
46
link : "/validators/properties" ,
47
47
} ,
48
48
{
49
49
name : "Toml Validator" ,
50
50
short : "Toml" ,
51
- icon : faFile ,
51
+ icon : faFileCode ,
52
52
description : "Validate Toml Files" ,
53
53
link : "/validators/toml" ,
54
54
} ,
55
55
{
56
56
name : "Hocon Validator" ,
57
57
short : "Hocon" ,
58
- icon : faFile ,
58
+ icon : faFileCode ,
59
59
description : "Validate Hocon Files" ,
60
60
link : "/validators/hocon" ,
61
61
} ,
62
62
{
63
63
name : "XML Validator" ,
64
64
short : "XML" ,
65
- icon : faFile ,
65
+ icon : faFileCode ,
66
66
description : "Validate XML Files" ,
67
67
link : "/validators/xml" ,
68
68
} ,
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ function ToolboxCard({
88
88
return (
89
89
< Link href = { link } passHref >
90
90
< 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` }
92
92
>
93
93
< FontAwesomeIcon icon = { icon } size = { "3x" } />
94
94
< p css = { tw `font-bold text-lg margin-bottom[-1rem]` } > { name } </ p >
You can’t perform that action at this time.
0 commit comments