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
-3
View File
@@ -181,9 +181,6 @@
}
}
&.last-column {
}
&.last-row {
border-bottom: 1px solid var(--boder-collor);
}
+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;
}
}
}
+4
View File
@@ -188,4 +188,8 @@
font-size: 13px;
line-height: 1.4;
}
}
.password-wrapper {
position: relative;
}