📝 Docs: 添加商店表单支持 (#2460)

Co-authored-by: Ju4tCode <42488585+yanyongyu@users.noreply.github.com>
This commit is contained in:
StarHeart
2023-11-22 14:04:22 +08:00
committed by GitHub
parent af9327de14
commit ef882927f3
20 changed files with 972 additions and 18 deletions

View File

@ -0,0 +1,31 @@
.form-btn {
@apply btn btn-sm btn-primary no-animation;
&-prev {
@apply mr-auto;
}
&-next {
@apply ml-auto;
}
&-hidden {
@apply hidden;
}
}
.form-input {
@apply input input-bordered w-full;
&-error {
@apply input-error;
}
}
.form-label {
@apply text-xs;
&-error {
@apply text-error;
}
}