Skip to content

Commit

Permalink
fix(chat): fix attachment type font size (Issue #2250)
Browse files Browse the repository at this point in the history
  • Loading branch information
Derikyan committed Oct 2, 2024
1 parent ac6462c commit d743ec2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/chat/src/components/Common/MultipleComboBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ export function MultipleComboBox<T>({
disabled={disabled}
placeholder={selectedItems.length ? '' : placeholder || ''}
className={classNames(
'w-full min-w-[10px] overflow-auto whitespace-break-spaces break-words bg-transparent text-xs outline-none placeholder:text-secondary',
'w-full min-w-[10px] overflow-auto whitespace-break-spaces break-words bg-transparent text-sm outline-none placeholder:text-secondary',
selectedItems.length ? 'pl-1' : 'pl-2',
)}
{...getInputProps({
Expand Down

0 comments on commit d743ec2

Please sign in to comment.