File tree Expand file tree Collapse file tree 3 files changed +34
-16
lines changed Expand file tree Collapse file tree 3 files changed +34
-16
lines changed Original file line number Diff line number Diff line change 62
62
font-size : 1rem ;
63
63
font-weight : 700 ;
64
64
65
+ & > * {
66
+ color : var (--ion-color-neutral-700 );
67
+ }
68
+
65
69
& .md {
66
70
font-size : 0.8rem ;
67
71
}
Original file line number Diff line number Diff line change 38
38
--min-height : auto ;
39
39
}
40
40
41
- ion-item .custom-input .input-line {
42
- border : none ;
43
- text-align : center ;
44
- font-size : 2rem ;
45
- }
41
+ ion-item .custom-input {
42
+ .input-line {
43
+ border-width : 0.125rem ;
44
+ overflow : hidden ;
45
+ background : var (--ion-color-neutral-100 );
46
+
47
+ & :focus-within {
48
+ border-color : var (--ion-color-primary-700 );
49
+ }
50
+ }
46
51
47
- ion-input {
48
- margin-left : 2rem ;
52
+ ion-input {
53
+ border-radius : 0.5rem ;
54
+ --padding-top : 0.75rem ;
55
+ --padding-bottom : 0.75rem ;
56
+ font-weight : 400 ;
57
+ font-size : 1rem ;
49
58
50
- & [type = " password" ] {
51
- letter-spacing : 0.25em ;
52
- }
53
- }
59
+ .input-wrapper {
60
+ --background : var (--ion-color-neutral-100 );
61
+ }
54
62
55
- .close-button-label {
56
- color : var (--ion-color-neutral-800 );
63
+ & [type = " password" ] {
64
+ letter-spacing : 0.25em ;
65
+ }
66
+ }
57
67
}
58
68
59
69
.error-message {
91
101
text-transform : none !important ;
92
102
border-radius : 1rem !important ;
93
103
border : 1px solid var (--ion-color-neutral-400 ) !important ;
94
- height : auto !important ;
104
+
105
+ & .sc-ion-alert-md {
106
+ height : auto !important ;
107
+ }
95
108
}
96
109
}
Original file line number Diff line number Diff line change @@ -127,10 +127,11 @@ const VerifyPassword = ({
127
127
< form className = "password-input-container" >
128
128
< CustomInput
129
129
dataTestId = "verify-password-value"
130
- hiddenInput = { true }
131
- autofocus = { true }
130
+ hiddenInput
131
+ autofocus
132
132
onChangeInput = { setVerifyPasswordValue }
133
133
value = { verifyPasswordValue }
134
+ error = { showError }
134
135
/>
135
136
{ showError ? (
136
137
< ErrorMessage
You can’t perform that action at this time.
0 commit comments