@@ -12,32 +12,36 @@ export default () => (
12
12
< div className = "w-1/2 px-6" >
13
13
< label className = "block" >
14
14
< span className = "text-gray-700" > Input</ span >
15
- < input type = "email" className = "form-input mt-1 block w-full" placeholder = "john@example.com" />
15
+ < input type = "email" className = "form-input mt-1 block w-full" placeholder = "john@example.com" />
16
16
</ label >
17
17
18
18
< label className = "block mt-4" >
19
19
< span className = "text-gray-700" > Textarea</ span >
20
- < textarea className = "form-textarea mt-1 block w-full h-24" rows = "3" placeholder = "Enter some long form content." > </ textarea >
20
+ < textarea
21
+ className = "form-textarea mt-1 block w-full h-24"
22
+ rows = "3"
23
+ placeholder = "Enter some long form content."
24
+ > </ textarea >
21
25
</ label >
22
26
23
27
< div className = "block mt-4" >
24
28
< span className = "text-gray-700" > Checkboxes</ span >
25
29
< div className = "mt-2" >
26
30
< div >
27
31
< label className = "inline-flex items-center" >
28
- < input type = "checkbox" className = "form-checkbox text-gray-800" />
32
+ < input type = "checkbox" className = "form-checkbox" />
29
33
< span className = "ml-2" > Option 1</ span >
30
34
</ label >
31
35
</ div >
32
36
< div >
33
37
< label className = "inline-flex items-center" >
34
- < input type = "checkbox" className = "form-checkbox text-gray-800" />
38
+ < input type = "checkbox" className = "form-checkbox" />
35
39
< span className = "ml-2" > Option 2</ span >
36
40
</ label >
37
41
</ div >
38
42
< div >
39
43
< label className = "inline-flex items-center" >
40
- < input type = "checkbox" className = "form-checkbox text-gray-800" />
44
+ < input type = "checkbox" className = "form-checkbox" />
41
45
< span className = "ml-2" > Option 3</ span >
42
46
</ label >
43
47
</ div >
@@ -70,19 +74,19 @@ export default () => (
70
74
< div className = "mt-2" >
71
75
< div >
72
76
< label className = "inline-flex items-center" >
73
- < input type = "radio" className = "form-radio text-gray-800 " name = "radio-direct" value = "1" />
77
+ < input type = "radio" className = "form-radio" name = "radio-direct" value = "1" />
74
78
< span className = "ml-2" > Option 1</ span >
75
79
</ label >
76
80
</ div >
77
81
< div >
78
82
< label className = "inline-flex items-center" >
79
- < input type = "radio" className = "form-radio text-gray-800 " name = "radio-direct" value = "2" />
83
+ < input type = "radio" className = "form-radio" name = "radio-direct" value = "2" />
80
84
< span className = "ml-2" > Option 2</ span >
81
85
</ label >
82
86
</ div >
83
87
< div >
84
88
< label className = "inline-flex items-center" >
85
- < input type = "radio" className = "form-radio text-gray-800 " name = "radio-direct" value = "3" />
89
+ < input type = "radio" className = "form-radio" name = "radio-direct" value = "3" />
86
90
< span className = "ml-2" > Option 3</ span >
87
91
</ label >
88
92
</ div >
0 commit comments