feat: 登录注册

This commit is contained in:
rd
2025-09-08 16:02:23 +08:00
parent 67e8196ce9
commit 6c5373689b
11 changed files with 1018 additions and 344 deletions

View File

@ -6,12 +6,7 @@
background-color: #fff !important;
padding: 0 12px;
}
.ant-input-affix-wrapper {
@include box;
&.ant-input-affix-wrapper-disabled {
background-color: var(--BG-200, #f2f3f5) !important;
}
}
.ant-input,
.ant-input-password {
@include box;
@ -44,7 +39,9 @@
}
&.ant-input-status-error,
&.ant-input-affix-wrapper-status-error {
border-color: $color-error !important;
&:not(.ant-input-disabled) {
border-color: $color-error !important;
}
}
}
input.ant-input {
@ -62,9 +59,20 @@ textarea.ant-input {
.ant-input-affix-wrapper {
padding-top: 0;
padding-bottom: 0;
@include box;
&.ant-input-affix-wrapper-disabled {
background-color: var(--BG-200, #f2f3f5) !important;
}
&.ant-input-affix-wrapper-status-error {
&:not(.ant-input-affix-wrapper-disabled) {
border-color: $color-error !important;
}
}
&:focus,
&-focused {
box-shadow: none !important;
border-color: rgb(var(--primary-6)) !important;
}
.ant-input {
height: 30px;