fix: password icon dislocation (#501)

修复登录页密码显示icon不同分辨率下错位
This commit is contained in:
Li yao 2021-04-19 18:36:44 +08:00 committed by GitHub
parent 94b2222c08
commit bd83eccdc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -194,18 +194,23 @@
input:not([type='checkbox']) { input:not([type='checkbox']) {
min-width: 360px; min-width: 360px;
@media (max-width: @screen-xl) {
min-width: 320px;
}
@media (max-width: @screen-lg) { @media (max-width: @screen-lg) {
min-width: 300px; min-width: 260px;
} }
@media (max-width: @screen-md) { @media (max-width: @screen-md) {
min-width: 280px; min-width: 240px;
} }
@media (max-width: @screen-sm) { @media (max-width: @screen-sm) {
min-width: 180px; min-width: 160px;
} }
} }
.@{countdown-prefix-cls} input { .@{countdown-prefix-cls} input {
min-width: unset; min-width: unset;
} }