styling improvements

This commit is contained in:
Aydogdy Agabayev 2022-02-19 13:37:41 +05:00
parent 4e06ed2892
commit eb8bf6da05
2 changed files with 5 additions and 1 deletions

View File

@ -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 });

View File

@ -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);
}