Skip to content

Commit

Permalink
fix(Select): QUV-837 Input with select with long text overlaps expand…
Browse files Browse the repository at this point in the history
…s icon
  • Loading branch information
soslayando committed May 8, 2023
1 parent aee71fe commit 7b5e716
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,16 @@ export const StyledSelectControl = styled(ReactSelect).attrs(
}
////////////////////////////////// END VALUE WRAPPER & VALUE CONTAINER
// INPUT CONTAINER ///////////////////////////////////////////////////
&__input-container {
overflow-y: hidden;
&::-webkit-scrollbar {
display: none;
}
}
////////////////////////////////////////////////// END INPUT CONTAINER
// VALUE CONTAINER ///////////////////////////////////////////////////
&__value-container {
padding: 0 0 0 ${defaultHorPadding};
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/components/SelectControl/utils.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ActionMeta, MultiValue, Props, PropsValue } from 'react-select';
import { ChipSize } from '../../../src/components/Chip/declarations';
import { ChipSize } from '../Chip/declarations';
import { FieldSize } from '../../declarations';
import { SelectOption } from './declarations';
import { SelectControlProps } from './SelectControl';
Expand Down

0 comments on commit 7b5e716

Please sign in to comment.