Skip to content

Commit

Permalink
fix(dashboard): Fix close icon padding in tag input
Browse files Browse the repository at this point in the history
  • Loading branch information
desiprisg committed Nov 14, 2024
1 parent d51a862 commit 87dfa30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/dashboard/src/components/primitives/tag-input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const TagInput = forwardRef<HTMLInputElement, TagInputProps>((props, ref) => {
<Badge key={index} variant="outline" kind="tag" className="gap-1">
<span>{tag}</span>
<button type="button" onClick={() => removeTag(tag)}>
<RiCloseFill className="size-3" />
<RiCloseFill className="-mr-0.5 size-3" />
<span className="sr-only">Remove tag</span>
</button>
</Badge>
Expand Down

0 comments on commit 87dfa30

Please sign in to comment.