Unverified Commit bd83eccd authored by Li yao's avatar Li yao Committed by GitHub

fix: password icon dislocation (#501)

修复登录页密码显示icon不同分辨率下错位
parent 94b2222c
......@@ -194,18 +194,23 @@
input:not([type='checkbox']) {
min-width: 360px;
@media (max-width: @screen-xl) {
min-width: 320px;
}
@media (max-width: @screen-lg) {
min-width: 300px;
min-width: 260px;
}
@media (max-width: @screen-md) {
min-width: 280px;
min-width: 240px;
}
@media (max-width: @screen-sm) {
min-width: 180px;
min-width: 160px;
}
}
.@{countdown-prefix-cls} input {
min-width: unset;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment