add show password button

This commit is contained in:
smanylov
2025-12-15 12:22:42 +07:00
parent 72bd21c648
commit 7fb6f7418f
5 changed files with 61 additions and 13 deletions
+19
View File
@@ -92,4 +92,23 @@
margin: 0 auto;
padding: 0 24px;
}
}
.show-password-button {
cursor: pointer;
position: absolute;
top: 0px;
right: 7px;
svg {
width: 16px;
color: #686060;
transition: color 0.2s ease;
}
&.show {
svg {
color: black;
}
}
}