1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-08-07 18:25:45 +08:00

修复登录页密码框样式错误

错误描述issue #4236
This commit is contained in:
Allan Lin 2024-05-11 14:49:36 +08:00 committed by GitHub
parent 0caa975ee2
commit ee68e7883a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -235,6 +235,16 @@ $cursor: #fff;
box-shadow: 0 0 0px 1000px $bg inset !important;
-webkit-text-fill-color: $cursor !important;
}
/* 去除浏览器密码框默认的小眼睛 */
&::-webkit-credentials-cramble-button {
appearance: none;
}
&::-ms-reveal,
&::-ms-clear {
display: none;
}
}
}