Design: 프로젝트 생성 컴포넌트에서 라벨 디자인 변경

This commit is contained in:
홍창기 2024-09-30 19:19:04 +09:00
parent 7a5de56bc4
commit 689477192a

View File

@ -126,9 +126,9 @@ export default function ProjectCreateForm({ onSubmit }: { onSubmit: (data: Proje
{categories.map((category: string, index: number) => (
<div
key={index}
className="flex items-center gap-1 rounded-full border-2 border-gray-700 px-2 py-1 text-gray-700"
className="flex items-center gap-1 rounded-full bg-blue-500 py-1 pl-3 pr-2 text-white"
>
<span>{category}</span>
<span className="body-small">{category}</span>
<X
size={16}
className="cursor-pointer"