Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Multi selector for event subscriber is unable to adjust to multi row - Closes #6437 #6676

Merged
merged 2 commits into from
Aug 26, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ type Props = SingleSelectProps | MultiSelectProps;
const customSelectStyles: StylesConfig<SelectInputOptionType, boolean> = {
container: (currentStyles, _state) => ({
...currentStyles,
height: '40px',
minHeight: '40px',
boxSizing: 'border-box',
fontStyle: 'normal',
fontWeight: 'normal',
fontSize: '16px',
}),
valueContainer: (currentStyles, _state) => ({
...currentStyles,
height: '40px',
minHeight: '40px',
}),
option: (currentStyles, state) => ({
...currentStyles,
Expand Down