styling improvements
This commit is contained in:
parent
4e06ed2892
commit
eb8bf6da05
|
|
@ -35,7 +35,7 @@ const Recovery = () => {
|
|||
}, [inputValid]);
|
||||
|
||||
useEffect(() => {
|
||||
if (input.input1 == input.input2) {
|
||||
if (input.input1 === input.input2) {
|
||||
setInputValid({ ...inputValid, match: true });
|
||||
} else {
|
||||
setInputValid({ ...inputValid, match: false });
|
||||
|
|
|
|||
|
|
@ -49,3 +49,7 @@ input[type="date"]::-webkit-calendar-picker-indicator {
|
|||
background: url("../icons/calendar.svg") no-repeat;
|
||||
border-width: thin;
|
||||
}
|
||||
|
||||
input::placeholder {
|
||||
color: rgba(195, 195, 195, 0.5);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue