File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 138
138
139
139
}
140
140
141
+ .colorText {
142
+ color : white;
143
+ font-size : 13px ;
144
+ }
145
+
141
146
.colors {
142
147
display : flex;
143
148
justify-content : center;
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ export default function CreateCharacter() {
65
65
66
66
< div className = { styles . grupoInputs } >
67
67
< div className = { styles . inputArea } >
68
- < label htmlFor = "nameCharacter" > NOME DO PERSONAGEM </ label >
68
+ < label htmlFor = "nameCharacter" > Nome do personagem </ label >
69
69
< input
70
70
type = 'text'
71
71
id = "nameCharacter"
@@ -76,7 +76,7 @@ export default function CreateCharacter() {
76
76
/>
77
77
{ errors . nome && < p className = { styles . errorMsg } > { errors . nome } </ p > }
78
78
79
- < label htmlFor = "biography" > BIOGRAFIA </ label >
79
+ < label htmlFor = "biography" > Biografia </ label >
80
80
< textarea
81
81
value = { classe }
82
82
id = "biography"
@@ -88,8 +88,9 @@ export default function CreateCharacter() {
88
88
</ textarea >
89
89
{ errors . classe && < p className = { styles . errorMsg } > { errors . classe } </ p > }
90
90
91
-
91
+ < p className = { styles . colorText } > Escolha sua cor: </ p >
92
92
< div className = { styles . colors } >
93
+
93
94
< input type = 'radio' name = 'color' id = 'black' value = 'black' className = { styles . color } hidden defaultChecked />
94
95
< label htmlFor = 'black' className = { `${ styles . buttonColors } ${ styles . black } ` } > </ label >
95
96
@@ -121,7 +122,7 @@ export default function CreateCharacter() {
121
122
</ div >
122
123
123
124
< div className = { styles . previewArea } >
124
- < label > PREVIEW DA FICHA </ label >
125
+ < label > Preview da ficha </ label >
125
126
{ /*
126
127
<div className={styles.previewInput}>
127
128
<input
You can’t perform that action at this time.
0 commit comments