调整验证码图片大小

This commit is contained in:
2026-06-12 20:18:23 +08:00
parent 131f06c720
commit bac4a507aa
4 changed files with 56 additions and 15 deletions

View File

@@ -610,8 +610,11 @@ input[type="text"].input-error {
}
.modal-captcha-img {
height: 46px;
flex: 1;
height: 86px;
width: min(260px, 100%);
max-width: 260px;
min-width: 0;
flex: 1 1 0;
border-radius: var(--radius-sm);
border: 1.5px solid var(--border);
cursor: pointer;
@@ -721,6 +724,11 @@ input[type="text"].input-error {
height: 38px;
}
.modal-captcha-img {
height: 72px;
max-width: 100%;
}
.form-actions {
flex-direction: column;
}