Skip to content

Commit

Permalink
increase focused border
Browse files Browse the repository at this point in the history
  • Loading branch information
princerajpoot20 committed Oct 10, 2023
1 parent fef44ca commit d080f7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ui/components/ChipInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ export const ChipInput: FunctionComponent<ChipInputProps> = ({
{chips.map((chip, index) => (
<div
key={chip}
className="m-1 bg-gray-100 text-gray-900 rounded px-2 py-1 flex items-center border border-gray-400 focus:border-blue-500 focus:outline"
style={{ height: '28px', borderWidth: '0.5px', borderStyle: 'solid' }}
className="m-1 bg-gray-100 text-gray-900 rounded px-2 py-1 flex items-center border border-gray-400 focus:border-blue-500 focus:border-2 focus:outline-none"
style={{ height: '28px', borderStyle: 'solid' }}
tabIndex={0}
onKeyDown={handleChipKeyDown(index)}
ref={index === 0 ? firstChipRef : undefined}
Expand Down

0 comments on commit d080f7e

Please sign in to comment.