diff --git a/packages/web/components/elements/LabelsPicker.tsx b/packages/web/components/elements/LabelsPicker.tsx index c76924e1c..7f6b6548d 100644 --- a/packages/web/components/elements/LabelsPicker.tsx +++ b/packages/web/components/elements/LabelsPicker.tsx @@ -112,6 +112,9 @@ export const LabelsPicker = (props: LabelsPickerProps): JSX.Element => { marginTop: '0px', marginBottom: '0px', }, + '>input': { + fontSize: '16px', + }, }} onMouseDown={(event) => { inputRef.current?.focus() @@ -153,10 +156,14 @@ export const LabelsPicker = (props: LabelsPickerProps): JSX.Element => { }} > { inputRef.current = ref }} + inputStyle={{ + fontSize: '16px', + minWidth: '100px', + }} onFocus={() => { if (props.onFocus) { props.onFocus()