Browse Source

fix: password icon dislocation (#501)

修复登录页密码显示icon不同分辨率下错位
pull/505/head
Li yao 5 years ago
committed by GitHub
parent
commit
bd83eccdc5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 11
      src/views/sys/login/Login.vue

11
src/views/sys/login/Login.vue

@ -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;
}

Loading…
Cancel
Save