Skip to content

Commit 23da6ba

Browse files
committed
Added space between the delete concept button and the concept text
1 parent ed34ac3 commit 23da6ba

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/next-client-app/components/concepts/concept-tags.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export const ConceptTags = React.memo(function ConceptTags({
5252
>
5353
<Tooltip id="badge-tooltip" />
5454
<LazyBadge
55-
className={`flex items-center pr-0 ${
55+
className={`flex items-center gap-2 pr-0 ${
5656
concept.creation_type === "V"
5757
? "bg-carrot-vocab hover:bg-carrot-vocab dark:bg-carrot-vocab dark:text-white"
5858
: concept.creation_type === "M"
@@ -63,7 +63,7 @@ export const ConceptTags = React.memo(function ConceptTags({
6363
} ${concepts.length > 1 ? "my-[1px]" : ""}`}
6464
key={concept.concept_code}
6565
>
66-
<p className="pl-1 py-0.5 m-0">{`${concept.concept_id} ${concept.concept_name} (${concept.creation_type})`}</p>
66+
<p className="py-0.5 m-0">{`${concept.concept_id} ${concept.concept_name} (${concept.creation_type})`}</p>
6767
<Button
6868
size="icon"
6969
variant="ghost"

0 commit comments

Comments
 (0)