Skip to content

Commit

Permalink
fix: password icon dislocation (#501)
Browse files Browse the repository at this point in the history
修复登录页密码显示icon不同分辨率下错位
  • Loading branch information
LuCatIsFun authored Apr 19, 2021
1 parent 94b2222 commit bd83ecc
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/views/sys/login/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit bd83ecc

Please sign in to comment.