Skip to content

Commit 7a44309

Browse files
committed
fix: update TypeBadge component styles for improved visual consistency
1 parent 0e602e8 commit 7a44309

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/modules/datasets/dataset/schema/TypeBadge.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ interface TypeBadgeProps {
1515
}
1616

1717
const borderTypeColor = [
18-
{ keywords: ['string'], color: 'border-yellow-500 text-yellow-500' },
18+
{ keywords: ['string'], color: 'border-yellow-500 text-yellow-200' },
1919
{ keywords: ['video'], color: 'border-orange-300 text-orange-300' },
2020
{ keywords: ['bool'], color: 'border-blue-200 text-blue-200' },
2121
{ keywords: ['application'], color: 'border-blue-400 text-blue-400' },
@@ -53,7 +53,7 @@ const TypeBadge: React.FC<TypeBadgeProps> = ({
5353
className={cn(
5454
`flex`,
5555
direction === 'vertical'
56-
? 'flex-col gap-1'
56+
? 'flex-col gap-2'
5757
: 'flex-row flex-wrap gap-4',
5858
className
5959
)}

0 commit comments

Comments
 (0)