Skip to content

Commit a7d0d46

Browse files
committed
feat: 태그 컴포넌트 스타일 수정
1 parent 00f2b20 commit a7d0d46

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/shared/components/tag/Tag.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const tagStyle = cva('flex items-center rounded-[500px] text-gray-50 ', {
1616
variant: {
1717
hash: 'bg-mint-600 text-title-sm px-[1.2rem] py-[0.3rem]',
1818
toggle:
19-
'bg-pink-300 w-[10rem] text-label-md gap-2 justify-center py-[0.5rem]',
19+
'bg-pink-300 w-[10rem] text-label-md gap-2 justify-center py-[0.5rem] font-medium',
2020
},
2121
},
2222
defaultVariants: {
@@ -32,7 +32,7 @@ const Tag = ({ label, icon, variant, className, onClick }: Props) => {
3232
onClick={onClick}
3333
>
3434
{icon && <Icon name={icon} size={14} color='gray-50' />}
35-
<span className='truncate'>{label}</span>
35+
<span>{label}</span>
3636
</button>
3737
);
3838
};

0 commit comments

Comments
 (0)