Skip to content

Commit

Permalink
- some styling fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jashanbhullar committed Sep 19, 2023
1 parent 26551ca commit 0fad133
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/beta/components/fields/SelectField/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ const InputWrapper = styled.div<{ disabled: boolean }>`
`;

const Select = styled.div<{ open: boolean; selected: boolean }>`
display: flex;
padding: 4px 8px;
/* The width + placement of the arrow icon */
padding-right: 22px;
Expand All @@ -95,6 +94,7 @@ const Select = styled.div<{ open: boolean; selected: boolean }>`
line-height: 2.33;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 12px;
color: ${({ theme, selected }) => (selected ? theme.content.main : theme.content.weaker)};
background: ${({ theme }) => theme.bg[1]};
Expand Down

0 comments on commit 0fad133

Please sign in to comment.