Skip to content

Commit

Permalink
ui changes
Browse files Browse the repository at this point in the history
  • Loading branch information
princerajpoot20 committed Oct 10, 2023
1 parent 6d8077b commit fef44ca
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/ui/components/ChipInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,12 @@ export const ChipInput: FunctionComponent<ChipInputProps> = ({
};

return (
<div className={`${className} flex flex-wrap items-center p-1 bg-gray-900 rounded border-2 border-gray-700 h-12`}>
<div className={`${className} flex flex-wrapitems-center p-1 bg-gray-900 rounded border border-gray-800`} style={{ width: '862px', height: '46px' }}>
{chips.map((chip, index) => (
<div
key={chip}
className="m-1 bg-gray-800 text-white rounded px-2 py-1 flex items-center"
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' }}
tabIndex={0}
onKeyDown={handleChipKeyDown(index)}
ref={index === 0 ? firstChipRef : undefined}
Expand Down

0 comments on commit fef44ca

Please sign in to comment.