File tree Expand file tree Collapse file tree 2 files changed +14
-3
lines changed
src/routes/ResetPassword/components Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -25,13 +25,13 @@ class ResetPasswordView extends Component {
25
25
< form onSubmit = { handleSubmit ( ( data ) => _self . onSubmit ( { ...data , code : token } ) ) } >
26
26
< div styleName = "row" >
27
27
< label htmlFor = "email" > Email:</ label >
28
- < FormField { ...fields . email } >
28
+ < FormField { ...fields . email } className = "email-field" >
29
29
< TextField { ...fields . email } label = { 'email' } />
30
30
</ FormField >
31
31
</ div >
32
32
< div styleName = "row" >
33
33
< label htmlFor = "password" > Password:</ label >
34
- < FormField { ...fields . password } >
34
+ < FormField { ...fields . password } className = "password-field" >
35
35
< TextField { ...fields . password } label = { 'New Password' } />
36
36
</ FormField >
37
37
</ div >
Original file line number Diff line number Diff line change 10
10
border-top : 1px solid #e7e8ea ;
11
11
padding-top : 25px ;
12
12
}
13
+ :global {
14
+ .form- field {
15
+ width : 100% ;
16
+ & .error {
17
+ color : #ff3100 ;
18
+ > div :first-child {
19
+ border : 1px solid #ff3100 ;
20
+ }
21
+ }
22
+ }
23
+ }
13
24
}
14
25
.row {
15
26
display : flex ;
34
45
}
35
46
.actions {
36
47
text-align : right ;
37
- }
48
+ }
You can’t perform that action at this time.
0 commit comments