chore: Revert dropdown width changes (#25652)

This commit is contained in:
ChandanBalajiBP 2023-07-25 01:18:55 +05:30 committed by GitHub
parent 6564a8f515
commit 4e1f378fee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,8 +23,7 @@ const DropdownSelect = styled.div<{
width: string;
}>`
/* font-size: 14px; */
min-width: 380px;
max-width: 545px;
width: ${(props) => (props?.width ? props?.width : "270px")};
`;
class DropDownControl extends BaseControl<Props> {