mirror of
https://github.com/langgenius/dify.git
synced 2026-04-10 11:37:11 +08:00
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: yyh <yuanyouhuilyz@gmail.com>
37 lines
736 B
CSS
37 lines
736 B
CSS
@utility badge {
|
|
@apply inline-flex justify-center items-center text-text-tertiary border border-divider-deep;
|
|
|
|
&.badge-warning {
|
|
@apply text-text-warning border border-text-warning;
|
|
}
|
|
|
|
&.badge-accent {
|
|
@apply text-text-accent-secondary border border-text-accent-secondary;
|
|
}
|
|
}
|
|
|
|
@utility badge-l {
|
|
@apply rounded-md gap-1 min-w-6;
|
|
}
|
|
|
|
@utility badge-m {
|
|
/* m is for the regular button */
|
|
@apply rounded-md gap-[3px] min-w-5;
|
|
}
|
|
|
|
@utility badge-s {
|
|
@apply rounded-[5px] gap-0.5 min-w-[18px];
|
|
}
|
|
|
|
@utility badge-warning {
|
|
&.badge {
|
|
@apply text-text-warning border border-text-warning;
|
|
}
|
|
}
|
|
|
|
@utility badge-accent {
|
|
&.badge {
|
|
@apply text-text-accent-secondary border border-text-accent-secondary;
|
|
}
|
|
}
|