Skip to content

Commit

Permalink
chore: resolve errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sparcscasio committed Nov 23, 2024
1 parent e8f53d5 commit f8e4cac
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions packages/web/src/common/components/Select/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ interface SelectProps {
const DropdownContainer = styled.div`
gap: 4px;
position: relative;
display: flex;
`;

const disabledStyle = css`
Expand All @@ -40,7 +39,7 @@ const StyledSelect = styled.div<{
isOpen?: boolean;
}>`
width: 100%;
padding: 8px 32px 8px 12px;
padding: 8px 12px;
outline: none;
cursor: pointer;
background-color: ${({ theme }) => theme.colors.WHITE};
Expand All @@ -64,13 +63,12 @@ const StyledSelect = styled.div<{
${({ disabled }) => disabled && disabledStyle}
`;

const Option = styled.div<{ selectable?: boolean }>`
const Option = styled.div<{ selectable?: boolean; isSelected?: boolean }>`
gap: 10px;
border-radius: 4px;
padding: 4px 12px;
font-family: ${({ theme }) => theme.fonts.FAMILY.PRETENDARD};
font-size: 16px;
packages/web/src/common/components/Select/index.tsx
line-height: 20px;
font-weight: ${({ theme }) => theme.fonts.WEIGHT.REGULAR};
color: ${({ theme, selectable }) =>
Expand Down

0 comments on commit f8e4cac

Please sign in to comment.