28 lines
424 B
CSS
28 lines
424 B
CSS
.password-wrapper {
|
|
position: relative;
|
|
}
|
|
|
|
.password-wrapper input {
|
|
width: 100%;
|
|
padding: 8px 35px 8px 10px;
|
|
}
|
|
|
|
.password-toggle {
|
|
position: absolute;
|
|
right: 10px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
cursor: pointer;
|
|
background: none;
|
|
border: none;
|
|
color: #666;
|
|
}
|
|
|
|
input::-ms-reveal,
|
|
input::-ms-clear {
|
|
display: none;
|
|
}
|
|
|
|
input::-webkit-credentials-auto-fill-button {
|
|
display: none !important;
|
|
} |