mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-09-07 04:26:45 +00:00
32 lines
341 B
CSS
32 lines
341 B
CSS
.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;
|
|
}
|
|
}
|