Commit a84586e2f49a2966ac5cb02d945e62e107b247d1
1 parent
bba77687
fix(login): fix login style close #306
Showing
1 changed file
with
10 additions
and
1 deletions
src/views/sys/login/Login.vue
@@ -156,8 +156,17 @@ | @@ -156,8 +156,17 @@ | ||
156 | 156 | ||
157 | input:not([type='checkbox']) { | 157 | input:not([type='checkbox']) { |
158 | min-width: 360px; | 158 | min-width: 360px; |
159 | + | ||
160 | + @media (max-width: @screen-lg) { | ||
161 | + min-width: 300px; | ||
162 | + } | ||
163 | + | ||
164 | + @media (max-width: @screen-md) { | ||
165 | + min-width: 280px; | ||
166 | + } | ||
167 | + | ||
159 | @media (max-width: @screen-sm) { | 168 | @media (max-width: @screen-sm) { |
160 | - min-width: 240px; | 169 | + min-width: 260px; |
161 | } | 170 | } |
162 | } | 171 | } |
163 | .@{countdown-prefix-cls} input { | 172 | .@{countdown-prefix-cls} input { |