Skip to content

Commit

Permalink
Fix Select Styling
Browse files Browse the repository at this point in the history
  • Loading branch information
vineethasok committed Sep 25, 2023
1 parent 55a48a2 commit 626241e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/components/Select/common/SelectStyled.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ export const StyledSelectTrigger = styled(Trigger)<{ $error: boolean }>`
border: 1px solid ${theme.click.field.color.stroke.disabled};
background: ${theme.click.field.color.background.disabled};
color: ${theme.click.field.color.text.disabled};
cursor: not-allowed;
}
`}
`;
Expand Down Expand Up @@ -104,9 +105,6 @@ export const SearchBarContainer = styled.div<{ $showSearch: boolean }>`
justify-content: flex-start;
align-items: center;
${({ theme, $showSearch }) => `
border-bottom: ${
$showSearch ? `1px solid ${theme.click.genericMenu.button.color.stroke.default}` : 0
};
padding: ${
$showSearch
? `${theme.click.genericMenu.item.space.y} ${theme.click.genericMenu.item.space.x}`
Expand Down

0 comments on commit 626241e

Please sign in to comment.