Commit bd83eccdc55c697d0db83bc3a7cf2829cafe96e7

Authored by Li yao
Committed by GitHub
1 parent 94b2222c

fix: password icon dislocation (#501)

修复登录页密码显示icon不同分辨率下错位
Showing 1 changed file with 8 additions and 3 deletions
src/views/sys/login/Login.vue
... ... @@ -194,18 +194,23 @@
194 194 input:not([type='checkbox']) {
195 195 min-width: 360px;
196 196  
  197 + @media (max-width: @screen-xl) {
  198 + min-width: 320px;
  199 + }
  200 +
197 201 @media (max-width: @screen-lg) {
198   - min-width: 300px;
  202 + min-width: 260px;
199 203 }
200 204  
201 205 @media (max-width: @screen-md) {
202   - min-width: 280px;
  206 + min-width: 240px;
203 207 }
204 208  
205 209 @media (max-width: @screen-sm) {
206   - min-width: 180px;
  210 + min-width: 160px;
207 211 }
208 212 }
  213 +
209 214 .@{countdown-prefix-cls} input {
210 215 min-width: unset;
211 216 }
... ...