后台登陆验证码

This commit is contained in:
yml
2026-05-22 17:20:47 +08:00
parent 6edee641fb
commit 7df557d668
12 changed files with 218 additions and 20 deletions
+31
View File
@@ -199,6 +199,37 @@ a {
color: #52616f;
}
.admin-captcha-row {
display: grid;
grid-template-columns: 1fr 132px;
gap: 10px;
width: 100%;
}
.captcha-image-button {
display: flex;
align-items: center;
justify-content: center;
height: 44px;
border: 1px solid #dcdfe6;
border-radius: 6px;
background: #ffffff;
padding: 0;
cursor: pointer;
overflow: hidden;
}
.captcha-image-button:disabled {
cursor: wait;
opacity: 0.7;
}
.captcha-image-button img {
display: block;
width: 132px;
height: 44px;
}
.page {
max-width: 1120px;
}